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