C:
char c = '\u6046';
printf("%c\n", c); // Output: 恆
JavaScript:
const char = '\u6046';
console.log(char); // Output: 恆
Java:
char c = '\u6046';
System.out.println(c); // Output: 恆
JSON:
{"text": "\u6046"} // Value: 恆
Python:
char = '\u6046'
print(char) # Output: 恆
Perl:
my $char = "\x{6046}";
print $char; # Output: 恆
PHP:
$char = "\x{6046}";
echo $char; // Output: 恆
Ruby:
char = "\u{6046}"
puts char # Output: 恆
Rust:
let c = '\u{6046}';
println!("{}", c); // Output: 恆
Go:
char := '\u6046'
fmt.Printf("%c\n", char) // Output: 恆
CSS:
/* CSS content property */
.element::before {
content: "\006046"; /* 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%86
MD5:
bb3e5dfaabd81af63980cfa304f9baaa
SHA1:
76d0358a2d9e8d8fbd36e3c0e59c8becbd5c0216
Base64:
5oGG