Community Resource for Roblox Unicodes
Roblox currently allows us to use three unicodes which correspond to Roblox icons;
- Robux:
utf8.char(0xE002)
- Premium:
utf8.char(0xE001)
- Verified:
utf8.char(0xE000)
If you’d like to see them in a fresh baseplate place, run this code in Command Bar:
local ScreenGui = Instance.new("ScreenGui", game.StarterGui)
local TextLabel = Instance.new("TextLabel", ScreenGui)
TextLabel.Size = UDim2.new(0, 200, 0, 150)
TextLabel.TextScaled = true
TextLabel.Text = ""..utf8.char(0xE002)..","..utf8.char(0xE001)..","..utf8.char(0xE000)
They are awesome, but I’d like to see even more being available for developers.
Some suggested examples to add from the website:
- Roblox Icon
- Roblox Studio Icon
- Friends Icon ← This would be the best to add in my opinion
- Favorite Icon (specifically Roblox Star, not the Emoji)
- Inventory Icon
- Messages Icon
- Avatar Icon
- Group Icon
- Trade Icon
I believe that Roblox would directly benefit from adding more so that Developers’ would not upload their own icons (saving on Roblox’ storage and less assetIds to use universal logos / characters present inside the Roblox client and website.
Furthermore, I think it’d also help navigation for users / players as they could identify what these icons mean (such as Group Icon Unicode leading to something related to groups, Friend Icon related to something with friends/friended) if Developers have this resource.
Thank you for reading & I hope Roblox is able to give a response to this in Q1 2024!