C:
char c = '\u7691';
printf("%c\n", c); // Output: 皑
JavaScript:
const char = '\u7691';
console.log(char); // Output: 皑
Java:
char c = '\u7691';
System.out.println(c); // Output: 皑
JSON:
{"text": "\u7691"} // Value: 皑
Python:
char = '\u7691'
print(char) # Output: 皑
Perl:
my $char = "\x{7691}";
print $char; # Output: 皑
PHP:
$char = "\x{7691}";
echo $char; // Output: 皑
Ruby:
char = "\u{7691}"
puts char # Output: 皑
Rust:
let c = '\u{7691}';
println!("{}", c); // Output: 皑
Go:
char := '\u7691'
fmt.Printf("%c\n", char) // Output: 皑
CSS:
/* CSS content property */
.element::before {
content: "\007691"; /* 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=%E7%9A%91
MD5:
b15dc57a042929d0debb3933dce723e8
SHA1:
b1260414228aeedc31e5e0303e882403c16c3122
Base64:
55qR