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