C:
char c = '\u5A70';
printf("%c\n", c); // Output: 婰
JavaScript:
const char = '\u5A70';
console.log(char); // Output: 婰
Java:
char c = '\u5A70';
System.out.println(c); // Output: 婰
JSON:
{"text": "\u5A70"} // Value: 婰
Python:
char = '\u5A70'
print(char) # Output: 婰
Perl:
my $char = "\x{5A70}";
print $char; # Output: 婰
PHP:
$char = "\x{5A70}";
echo $char; // Output: 婰
Ruby:
char = "\u{5A70}"
puts char # Output: 婰
Rust:
let c = '\u{5A70}';
println!("{}", c); // Output: 婰
Go:
char := '\u5A70'
fmt.Printf("%c\n", char) // Output: 婰
CSS:
/* CSS content property */
.element::before {
content: "\005A70"; /* 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=%E5%A9%B0
MD5:
17bc47f7a039a3ec2e5049edde7b31d3
SHA1:
c6768658033758cd97be2d39fa12b2c49a086f33
Base64:
5amw