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