C:
char c = '\u7666';
printf("%c\n", c); // Output: 癦
JavaScript:
const char = '\u7666';
console.log(char); // Output: 癦
Java:
char c = '\u7666';
System.out.println(c); // Output: 癦
JSON:
{"text": "\u7666"} // Value: 癦
Python:
char = '\u7666'
print(char) # Output: 癦
Perl:
my $char = "\x{7666}";
print $char; # Output: 癦
PHP:
$char = "\x{7666}";
echo $char; // Output: 癦
Ruby:
char = "\u{7666}"
puts char # Output: 癦
Rust:
let c = '\u{7666}';
println!("{}", c); // Output: 癦
Go:
char := '\u7666'
fmt.Printf("%c\n", char) // Output: 癦
CSS:
/* CSS content property */
.element::before {
content: "\007666"; /* 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%A6
MD5:
a14670633ee19352c9ddf1452d586d1d
SHA1:
015abb7a97627cc1eb971e9e31c0cb460e38b560
Base64:
55mm