C:
char c = '\u6052';
printf("%c\n", c); // Output: 恒
JavaScript:
const char = '\u6052';
console.log(char); // Output: 恒
Java:
char c = '\u6052';
System.out.println(c); // Output: 恒
JSON:
{"text": "\u6052"} // Value: 恒
Python:
char = '\u6052'
print(char) # Output: 恒
Perl:
my $char = "\x{6052}";
print $char; # Output: 恒
PHP:
$char = "\x{6052}";
echo $char; // Output: 恒
Ruby:
char = "\u{6052}"
puts char # Output: 恒
Rust:
let c = '\u{6052}';
println!("{}", c); // Output: 恒
Go:
char := '\u6052'
fmt.Printf("%c\n", char) // Output: 恒
CSS:
/* CSS content property */
.element::before {
content: "\006052"; /* 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%92
MD5:
023eea003e60de9d57d0b2950c8dd473
SHA1:
bc95fc9ba970847ea814398e4f9950b2138a2ee2
Base64:
5oGS