C:
char c = '\u1F69B';
printf("%c\n", c); // Output: ๐
JavaScript:
const char = '\u1F69B';
console.log(char); // Output: ๐
Java:
char c = '\u1F69B';
System.out.println(c); // Output: ๐
JSON:
{"text": "\u1F69B"} // Value: ๐
Python:
char = '\u1F69B'
print(char) # Output: ๐
Perl:
my $char = "\x{1F69B}";
print $char; # Output: ๐
PHP:
$char = "\x{1F69B}";
echo $char; // Output: ๐
Ruby:
char = "\u{1F69B}"
puts char # Output: ๐
Rust:
let c = '\u{1F69B}';
println!("{}", c); // Output: ๐
Go:
char := '\u1F69B'
fmt.Printf("%c\n", char) // Output: ๐
CSS:
/* CSS content property */
.element::before {
content: "\01F69B"; /* 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%9A%9B
MD5:
3075ad7dee18ed85a0e602f8e1a09942
SHA1:
685d7d0538649c9510981b2e39bad79f8a6e35df
Base64:
8J+amw==