C:
char c = '\u9B99';
printf("%c\n", c); // Output: 鮙
JavaScript:
const char = '\u9B99';
console.log(char); // Output: 鮙
Java:
char c = '\u9B99';
System.out.println(c); // Output: 鮙
JSON:
{"text": "\u9B99"} // Value: 鮙
Python:
char = '\u9B99'
print(char) # Output: 鮙
Perl:
my $char = "\x{9B99}";
print $char; # Output: 鮙
PHP:
$char = "\x{9B99}";
echo $char; // Output: 鮙
Ruby:
char = "\u{9B99}"
puts char # Output: 鮙
Rust:
let c = '\u{9B99}';
println!("{}", c); // Output: 鮙
Go:
char := '\u9B99'
fmt.Printf("%c\n", char) // Output: 鮙
CSS:
/* CSS content property */
.element::before {
content: "\009B99"; /* 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%AE%99
MD5:
6443aca25f0d61b2341051d86b36985f
SHA1:
4689c8c8fdd2ffba93bad1117f127c74a17f22e7
Base64:
6a6Z