C:
char c = '\u7712';
printf("%c\n", c); // Output: 眒
JavaScript:
const char = '\u7712';
console.log(char); // Output: 眒
Java:
char c = '\u7712';
System.out.println(c); // Output: 眒
JSON:
{"text": "\u7712"} // Value: 眒
Python:
char = '\u7712'
print(char) # Output: 眒
Perl:
my $char = "\x{7712}";
print $char; # Output: 眒
PHP:
$char = "\x{7712}";
echo $char; // Output: 眒
Ruby:
char = "\u{7712}"
puts char # Output: 眒
Rust:
let c = '\u{7712}';
println!("{}", c); // Output: 眒
Go:
char := '\u7712'
fmt.Printf("%c\n", char) // Output: 眒
CSS:
/* CSS content property */
.element::before {
content: "\007712"; /* 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%92
MD5:
be7165256dbc88febedb3826de19cd85
SHA1:
73e22685b3e0bfbdac90cd2f81ad21506c88a40e
Base64:
55yS