Browsers that support access keys do so via the accesskey attribute which takes a single character - how and does this even work when using languages which require 2byte character encoding?
If I was given a string which was in say chinese, and I translated English text into chinese, it might look somehting like:
Code: Select all
$caption = "&7464;&5235;&847;&6334;"; // And so on??Using default string functions the above string is actually 22 bytes, but does it get interpreted as 4 * 2 = 8 bytes or four visible characters on screen???
Did I make any sense? Ca someone (AC?) clear this up for me?