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