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