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