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