C:
char c = '\u6061';
printf("%c\n", c); // Output: 恡
JavaScript:
const char = '\u6061';
console.log(char); // Output: 恡
Java:
char c = '\u6061';
System.out.println(c); // Output: 恡
JSON:
{"text": "\u6061"} // Value: 恡
Python:
char = '\u6061'
print(char) # Output: 恡
Perl:
my $char = "\x{6061}";
print $char; # Output: 恡
PHP:
$char = "\x{6061}";
echo $char; // Output: 恡
Ruby:
char = "\u{6061}"
puts char # Output: 恡
Rust:
let c = '\u{6061}';
println!("{}", c); // Output: 恡
Go:
char := '\u6061'
fmt.Printf("%c\n", char) // Output: 恡
CSS:
/* CSS content property */
.element::before {
content: "\006061"; /* 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%A1
MD5:
10a2be3bacbd1a1c22957be7076fabdf
SHA1:
98e7349ed8c47fb670f0f8ad11729da3d7f42e1a
Base64:
5oGh