A bash script is using a variable Q for some purpose (outside the scope of this question):
Q=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
As this script is used in an environment where each byte counts, this is waste. But some workaround like
Q=0$(seq -s "" 9)$(echo {A..Z}|tr -d " ")
(for C locale) is even worse. Am I too blind to see the obvious trick to compactly generate such a simple sequence?