C:
char c = '\u6045';
printf("%c\n", c); // Output: 恅
JavaScript:
const char = '\u6045';
console.log(char); // Output: 恅
Java:
char c = '\u6045';
System.out.println(c); // Output: 恅
JSON:
{"text": "\u6045"} // Value: 恅
Python:
char = '\u6045'
print(char) # Output: 恅
Perl:
my $char = "\x{6045}";
print $char; # Output: 恅
PHP:
$char = "\x{6045}";
echo $char; // Output: 恅
Ruby:
char = "\u{6045}"
puts char # Output: 恅
Rust:
let c = '\u{6045}';
println!("{}", c); // Output: 恅
Go:
char := '\u6045'
fmt.Printf("%c\n", char) // Output: 恅
CSS:
/* CSS content property */
.element::before {
content: "\006045"; /* 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%85
MD5:
a34dd8c02c4aac9c0af716cdf90d7461
SHA1:
9f8a4bdc13f10272d3b46fdc8b7f488f23696e11
Base64:
5oGF