C:
char c = '\u6070';
printf("%c\n", c); // Output: 恰
JavaScript:
const char = '\u6070';
console.log(char); // Output: 恰
Java:
char c = '\u6070';
System.out.println(c); // Output: 恰
JSON:
{"text": "\u6070"} // Value: 恰
Python:
char = '\u6070'
print(char) # Output: 恰
Perl:
my $char = "\x{6070}";
print $char; # Output: 恰
PHP:
$char = "\x{6070}";
echo $char; // Output: 恰
Ruby:
char = "\u{6070}"
puts char # Output: 恰
Rust:
let c = '\u{6070}';
println!("{}", c); // Output: 恰
Go:
char := '\u6070'
fmt.Printf("%c\n", char) // Output: 恰
CSS:
/* CSS content property */
.element::before {
content: "\006070"; /* 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=%E6%81%B0
MD5:
5f8d6a92d257cdb7992ff847f74c2338
SHA1:
3d23b228884b893c0a7416688ebdcae9411ca5f7
Base64:
5oGw