C:
char c = '\u1F3CE';
printf("%c\n", c); // Output: ๐
JavaScript:
const char = '\u1F3CE';
console.log(char); // Output: ๐
Java:
char c = '\u1F3CE';
System.out.println(c); // Output: ๐
JSON:
{"text": "\u1F3CE"} // Value: ๐
Python:
char = '\u1F3CE'
print(char) # Output: ๐
Perl:
my $char = "\x{1F3CE}";
print $char; # Output: ๐
PHP:
$char = "\x{1F3CE}";
echo $char; // Output: ๐
Ruby:
char = "\u{1F3CE}"
puts char # Output: ๐
Rust:
let c = '\u{1F3CE}';
println!("{}", c); // Output: ๐
Go:
char := '\u1F3CE'
fmt.Printf("%c\n", char) // Output: ๐
CSS:
/* CSS content property */
.element::before {
content: "\01F3CE"; /* Display: ๐ */
}
HTML Decimal:
<p>HTML decimal: 🏎</p> <!-- Display: ๐ -->
HTML Hexadecimal:
<p>HTML hex: 🏎</p> <!-- Display: ๐ -->
URL Encoding:
// ๐ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%8E
MD5:
b2d14d0c705ad2a1a016d6d96066914e
SHA1:
4b40918ce0b40ac425d7e1d62a51471d4547816b
Base64:
8J+Pjg==