C:
char c = '\u7730';
printf("%c\n", c); // Output: 眰
JavaScript:
const char = '\u7730';
console.log(char); // Output: 眰
Java:
char c = '\u7730';
System.out.println(c); // Output: 眰
JSON:
{"text": "\u7730"} // Value: 眰
Python:
char = '\u7730'
print(char) # Output: 眰
Perl:
my $char = "\x{7730}";
print $char; # Output: 眰
PHP:
$char = "\x{7730}";
echo $char; // Output: 眰
Ruby:
char = "\u{7730}"
puts char # Output: 眰
Rust:
let c = '\u{7730}';
println!("{}", c); // Output: 眰
Go:
char := '\u7730'
fmt.Printf("%c\n", char) // Output: 眰
CSS:
/* CSS content property */
.element::before {
content: "\007730"; /* 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%B0
MD5:
2452b344255b2b6ce3988958567d84e6
SHA1:
1d3383f3be663030412048f6ce6f93716872f082
Base64:
55yw