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