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