C:
char c = '\u7662';
printf("%c\n", c); // Output: 癢
JavaScript:
const char = '\u7662';
console.log(char); // Output: 癢
Java:
char c = '\u7662';
System.out.println(c); // Output: 癢
JSON:
{"text": "\u7662"} // Value: 癢
Python:
char = '\u7662'
print(char) # Output: 癢
Perl:
my $char = "\x{7662}";
print $char; # Output: 癢
PHP:
$char = "\x{7662}";
echo $char; // Output: 癢
Ruby:
char = "\u{7662}"
puts char # Output: 癢
Rust:
let c = '\u{7662}';
println!("{}", c); // Output: 癢
Go:
char := '\u7662'
fmt.Printf("%c\n", char) // Output: 癢
CSS:
/* CSS content property */
.element::before {
content: "\007662"; /* 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%99%A2
MD5:
3289679d710101ef10c020574e79e4d5
SHA1:
72148ee1076cb3b9c2adf69665213fe411b8eb3a
Base64:
55mi