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