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