C:
char c = '\u7668';
printf("%c\n", c); // Output: 癨
JavaScript:
const char = '\u7668';
console.log(char); // Output: 癨
Java:
char c = '\u7668';
System.out.println(c); // Output: 癨
JSON:
{"text": "\u7668"} // Value: 癨
Python:
char = '\u7668'
print(char) # Output: 癨
Perl:
my $char = "\x{7668}";
print $char; # Output: 癨
PHP:
$char = "\x{7668}";
echo $char; // Output: 癨
Ruby:
char = "\u{7668}"
puts char # Output: 癨
Rust:
let c = '\u{7668}';
println!("{}", c); // Output: 癨
Go:
char := '\u7668'
fmt.Printf("%c\n", char) // Output: 癨
CSS:
/* CSS content property */
.element::before {
content: "\007668"; /* 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%A8
MD5:
352f12c86221c45c9f6d4d031ed4e7b5
SHA1:
766700b7e8f3a178936b696b5a86f75f05e2fe65
Base64:
55mo