C:
char c = '\u7706';
printf("%c\n", c); // Output: 眆
JavaScript:
const char = '\u7706';
console.log(char); // Output: 眆
Java:
char c = '\u7706';
System.out.println(c); // Output: 眆
JSON:
{"text": "\u7706"} // Value: 眆
Python:
char = '\u7706'
print(char) # Output: 眆
Perl:
my $char = "\x{7706}";
print $char; # Output: 眆
PHP:
$char = "\x{7706}";
echo $char; // Output: 眆
Ruby:
char = "\u{7706}"
puts char # Output: 眆
Rust:
let c = '\u{7706}';
println!("{}", c); // Output: 眆
Go:
char := '\u7706'
fmt.Printf("%c\n", char) // Output: 眆
CSS:
/* CSS content property */
.element::before {
content: "\007706"; /* 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%9C%86
MD5:
a42694fbd56d8af5a6f21b06f05b598f
SHA1:
68fa306dba4b40f810a27e1d5ceaebfcd61814da
Base64:
55yG