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