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