In my case, I modify the volume label of a fat32 usb disk as "usb 磁盘“(with chinese chars) with windows system.
Then I plug the usb disk in a ubuntu(13.04),
ls /dev/disk/by-label
shows "USB\x20\xb4\xc5\xc5\xcc".
or, I use udev rules to auto mount the external usb disk, on a angstrom beaglebone.
IMPORT{program}="/sbin/blkid -o udev -p %N"
ENV{ID_FS_LABEL}!="", ENV{mount_point}="/media/%E{ID_FS_LABEL}"
ACTION=="add", RUN+="/bin/mkdir -p %E{mount_point}", RUN+="/bin/mount -o iocharset=utf8 /dev/%k %E{mount_point}"
I get a "/media/USB___" mount point.
How can I get the right volume label?
Test a ntfs and ext3 usb disk is fine.
FAT, VFAT, and FAT32 don't seem to use unicode filenames -- at least not as I understand it. They can use most characters from "OEM" code pages (which I don't completely understand), but even then there are many characters that can't be displayed.
It is explained in this Microsoft page: http://msdn.microsoft.com/en-us/library/windows/desktop/dd317748%28v=vs.85%29.aspx
This Wikipedia page: http://en.wikipedia.org/wiki/Comparison_of_file_systems makes it a little clearer
Hope this helps.