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