https://bugs.kde.org/show_bug.cgi?id=349088
--- Comment #14 from Thomas Landauer <tho...@landauer.at> --- I don't know how to get Qt 6. The issue from my above reproduction script seems to be fixed now in Konsole 21.12.3 (Qt 5.15.3). But there's still something wrong, regarding styling (color): * The color is never working for those special characters * The character is only displayed partially, if there's no blank after it ```bash #!/bin/bash GREEN='\033[0;32m' NC='\033[0m' # No Color printf "${GREEN}Green${NC}\n" # Just to prove that `${GREEN}` is working in principle ;-) printf "✔\n" # Full checkmark displayed in grey color printf "${GREEN}✔${NC}\n" # "Half" checkmark displayed in grey color printf "${GREEN}✔ ${NC}\n" # Full checkmark displayed in grey color ``` -- You are receiving this mail because: You are watching all bug changes.