C:
char c = '\u7A62';
printf("%c\n", c); // Output: 穢
JavaScript:
const char = '\u7A62';
console.log(char); // Output: 穢
Java:
char c = '\u7A62';
System.out.println(c); // Output: 穢
JSON:
{"text": "\u7A62"} // Value: 穢
Python:
char = '\u7A62'
print(char) # Output: 穢
Perl:
my $char = "\x{7A62}";
print $char; # Output: 穢
PHP:
$char = "\x{7A62}";
echo $char; // Output: 穢
Ruby:
char = "\u{7A62}"
puts char # Output: 穢
Rust:
let c = '\u{7A62}';
println!("{}", c); // Output: 穢
Go:
char := '\u7A62'
fmt.Printf("%c\n", char) // Output: 穢
CSS:
/* CSS content property */
.element::before {
content: "\007A62"; /* 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%A9%A2
MD5:
b6ca38ade62a20d2e1d8429c21fed817
SHA1:
66546fbc6eb9a5e16169f13b216bfb5f4dd5119e
Base64:
56mi