C:
char c = '\u9100';
printf("%c\n", c); // Output: 鄀
JavaScript:
const char = '\u9100';
console.log(char); // Output: 鄀
Java:
char c = '\u9100';
System.out.println(c); // Output: 鄀
JSON:
{"text": "\u9100"} // Value: 鄀
Python:
char = '\u9100'
print(char) # Output: 鄀
Perl:
my $char = "\x{9100}";
print $char; # Output: 鄀
PHP:
$char = "\x{9100}";
echo $char; // Output: 鄀
Ruby:
char = "\u{9100}"
puts char # Output: 鄀
Rust:
let c = '\u{9100}';
println!("{}", c); // Output: 鄀
Go:
char := '\u9100'
fmt.Printf("%c\n", char) // Output: 鄀
CSS:
/* CSS content property */
.element::before {
content: "\009100"; /* 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%84%80
MD5:
46ac4dfc6d9b21c14f4f132dc12d09bd
SHA1:
da012c7ce26aaa2a9a57f577941142ff5a1333a7
Base64:
6YSA