C:
char c = '\u7693';
printf("%c\n", c); // Output: 皓
JavaScript:
const char = '\u7693';
console.log(char); // Output: 皓
Java:
char c = '\u7693';
System.out.println(c); // Output: 皓
JSON:
{"text": "\u7693"} // Value: 皓
Python:
char = '\u7693'
print(char) # Output: 皓
Perl:
my $char = "\x{7693}";
print $char; # Output: 皓
PHP:
$char = "\x{7693}";
echo $char; // Output: 皓
Ruby:
char = "\u{7693}"
puts char # Output: 皓
Rust:
let c = '\u{7693}';
println!("{}", c); // Output: 皓
Go:
char := '\u7693'
fmt.Printf("%c\n", char) // Output: 皓
CSS:
/* CSS content property */
.element::before {
content: "\007693"; /* 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%93
MD5:
eb63390a067e2e654d17e2874d14ff1c
SHA1:
e2127f958a5ed7ac3e8f9eebc0cb45105ab2f32c
Base64:
55qT