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==