C:
char c = '\u6057';
printf("%c\n", c); // Output: 恗
JavaScript:
const char = '\u6057';
console.log(char); // Output: 恗
Java:
char c = '\u6057';
System.out.println(c); // Output: 恗
JSON:
{"text": "\u6057"} // Value: 恗
Python:
char = '\u6057'
print(char) # Output: 恗
Perl:
my $char = "\x{6057}";
print $char; # Output: 恗
PHP:
$char = "\x{6057}";
echo $char; // Output: 恗
Ruby:
char = "\u{6057}"
puts char # Output: 恗
Rust:
let c = '\u{6057}';
println!("{}", c); // Output: 恗
Go:
char := '\u6057'
fmt.Printf("%c\n", char) // Output: 恗
CSS:
/* CSS content property */
.element::before {
content: "\006057"; /* 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%97
MD5:
7c7955391a3768f57152c9d52f66688d
SHA1:
1b82cb373822cd8346efda1e032cef4afc247342
Base64:
5oGX