C:
char c = '\u4E9C';
printf("%c\n", c); // Output: 亜
JavaScript:
const char = '\u4E9C';
console.log(char); // Output: 亜
Java:
char c = '\u4E9C';
System.out.println(c); // Output: 亜
JSON:
{"text": "\u4E9C"} // Value: 亜
Python:
char = '\u4E9C'
print(char) # Output: 亜
Perl:
my $char = "\x{4E9C}";
print $char; # Output: 亜
PHP:
$char = "\x{4E9C}";
echo $char; // Output: 亜
Ruby:
char = "\u{4E9C}"
puts char # Output: 亜
Rust:
let c = '\u{4E9C}';
println!("{}", c); // Output: 亜
Go:
char := '\u4E9C'
fmt.Printf("%c\n", char) // Output: 亜
CSS:
/* CSS content property */
.element::before {
content: "\004E9C"; /* 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=%E4%BA%9C
MD5:
aa594445bbd6b22530b36a89286ee11a
SHA1:
1896e313953fc22c5d7e031fb88e8ed94353e127
Base64:
5Lqc