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