C:
char c = '\u7742';
printf("%c\n", c); // Output: 睂
JavaScript:
const char = '\u7742';
console.log(char); // Output: 睂
Java:
char c = '\u7742';
System.out.println(c); // Output: 睂
JSON:
{"text": "\u7742"} // Value: 睂
Python:
char = '\u7742'
print(char) # Output: 睂
Perl:
my $char = "\x{7742}";
print $char; # Output: 睂
PHP:
$char = "\x{7742}";
echo $char; // Output: 睂
Ruby:
char = "\u{7742}"
puts char # Output: 睂
Rust:
let c = '\u{7742}';
println!("{}", c); // Output: 睂
Go:
char := '\u7742'
fmt.Printf("%c\n", char) // Output: 睂
CSS:
/* CSS content property */
.element::before {
content: "\007742"; /* 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%9D%82
MD5:
fb94e85341e3e065dafef01eb3a35fa2
SHA1:
eadef51e7bd1f4604f259a4c5dd26a9e5cc3550e
Base64:
552C