C:
char c = '\u6049';
printf("%c\n", c); // Output: 恉
JavaScript:
const char = '\u6049';
console.log(char); // Output: 恉
Java:
char c = '\u6049';
System.out.println(c); // Output: 恉
JSON:
{"text": "\u6049"} // Value: 恉
Python:
char = '\u6049'
print(char) # Output: 恉
Perl:
my $char = "\x{6049}";
print $char; # Output: 恉
PHP:
$char = "\x{6049}";
echo $char; // Output: 恉
Ruby:
char = "\u{6049}"
puts char # Output: 恉
Rust:
let c = '\u{6049}';
println!("{}", c); // Output: 恉
Go:
char := '\u6049'
fmt.Printf("%c\n", char) // Output: 恉
CSS:
/* CSS content property */
.element::before {
content: "\006049"; /* 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%89
MD5:
a27a4a8e3280f3cceff83af04f471fb1
SHA1:
c16d9f550b5a31c9611dbbed261a02b6295b1db6
Base64:
5oGJ