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