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