C:
char c = '\u9F0A';
printf("%c\n", c); // Output: 鼊
JavaScript:
const char = '\u9F0A';
console.log(char); // Output: 鼊
Java:
char c = '\u9F0A';
System.out.println(c); // Output: 鼊
JSON:
{"text": "\u9F0A"} // Value: 鼊
Python:
char = '\u9F0A'
print(char) # Output: 鼊
Perl:
my $char = "\x{9F0A}";
print $char; # Output: 鼊
PHP:
$char = "\x{9F0A}";
echo $char; // Output: 鼊
Ruby:
char = "\u{9F0A}"
puts char # Output: 鼊
Rust:
let c = '\u{9F0A}';
println!("{}", c); // Output: 鼊
Go:
char := '\u9F0A'
fmt.Printf("%c\n", char) // Output: 鼊
CSS:
/* CSS content property */
.element::before {
content: "\009F0A"; /* 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=%E9%BC%8A
MD5:
9ded24a718d2b11b3c73a366af300378
SHA1:
7a8d89d554e8c54497c2f5b838dbfac914b316b1
Base64:
6byK