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