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