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