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