C:
char c = '\u6073';
printf("%c\n", c); // Output: 恳
JavaScript:
const char = '\u6073';
console.log(char); // Output: 恳
Java:
char c = '\u6073';
System.out.println(c); // Output: 恳
JSON:
{"text": "\u6073"} // Value: 恳
Python:
char = '\u6073'
print(char) # Output: 恳
Perl:
my $char = "\x{6073}";
print $char; # Output: 恳
PHP:
$char = "\x{6073}";
echo $char; // Output: 恳
Ruby:
char = "\u{6073}"
puts char # Output: 恳
Rust:
let c = '\u{6073}';
println!("{}", c); // Output: 恳
Go:
char := '\u6073'
fmt.Printf("%c\n", char) // Output: 恳
CSS:
/* CSS content property */
.element::before {
content: "\006073"; /* 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%B3
MD5:
2d9c28d8788d554ccc3b7314c07f61f0
SHA1:
67aa11417d0950921d8b82354368077b7d7d5882
Base64:
5oGz