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