C:
char c = '\u7698';
printf("%c\n", c); // Output: 皘
JavaScript:
const char = '\u7698';
console.log(char); // Output: 皘
Java:
char c = '\u7698';
System.out.println(c); // Output: 皘
JSON:
{"text": "\u7698"} // Value: 皘
Python:
char = '\u7698'
print(char) # Output: 皘
Perl:
my $char = "\x{7698}";
print $char; # Output: 皘
PHP:
$char = "\x{7698}";
echo $char; // Output: 皘
Ruby:
char = "\u{7698}"
puts char # Output: 皘
Rust:
let c = '\u{7698}';
println!("{}", c); // Output: 皘
Go:
char := '\u7698'
fmt.Printf("%c\n", char) // Output: 皘
CSS:
/* CSS content property */
.element::before {
content: "\007698"; /* 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%98
MD5:
b5141ad723010b2c9819e0b37eee3a88
SHA1:
13c1386bcbf9fc0a2c4ec198b59834af6c7182e4
Base64:
55qY