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