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