C:
char c = '\u7723';
printf("%c\n", c); // Output: 眣
JavaScript:
const char = '\u7723';
console.log(char); // Output: 眣
Java:
char c = '\u7723';
System.out.println(c); // Output: 眣
JSON:
{"text": "\u7723"} // Value: 眣
Python:
char = '\u7723'
print(char) # Output: 眣
Perl:
my $char = "\x{7723}";
print $char; # Output: 眣
PHP:
$char = "\x{7723}";
echo $char; // Output: 眣
Ruby:
char = "\u{7723}"
puts char # Output: 眣
Rust:
let c = '\u{7723}';
println!("{}", c); // Output: 眣
Go:
char := '\u7723'
fmt.Printf("%c\n", char) // Output: 眣
CSS:
/* CSS content property */
.element::before {
content: "\007723"; /* 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%A3
MD5:
d91ccd340c5c978b3bde596f2bde6b43
SHA1:
e540097508f15081206f637e989fe22890426d2e
Base64:
55yj