C:
char c = '\u6068';
printf("%c\n", c); // Output: 恨
JavaScript:
const char = '\u6068';
console.log(char); // Output: 恨
Java:
char c = '\u6068';
System.out.println(c); // Output: 恨
JSON:
{"text": "\u6068"} // Value: 恨
Python:
char = '\u6068'
print(char) # Output: 恨
Perl:
my $char = "\x{6068}";
print $char; # Output: 恨
PHP:
$char = "\x{6068}";
echo $char; // Output: 恨
Ruby:
char = "\u{6068}"
puts char # Output: 恨
Rust:
let c = '\u{6068}';
println!("{}", c); // Output: 恨
Go:
char := '\u6068'
fmt.Printf("%c\n", char) // Output: 恨
CSS:
/* CSS content property */
.element::before {
content: "\006068"; /* 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%A8
MD5:
25606342824cd81dcc44de2d5553f8b4
SHA1:
4b14e94ca1fdc785f1c31f9d02f40e18e7b7ecee
Base64:
5oGo