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