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