C:
char c = '\u7774';
printf("%c\n", c); // Output: 睴
JavaScript:
const char = '\u7774';
console.log(char); // Output: 睴
Java:
char c = '\u7774';
System.out.println(c); // Output: 睴
JSON:
{"text": "\u7774"} // Value: 睴
Python:
char = '\u7774'
print(char) # Output: 睴
Perl:
my $char = "\x{7774}";
print $char; # Output: 睴
PHP:
$char = "\x{7774}";
echo $char; // Output: 睴
Ruby:
char = "\u{7774}"
puts char # Output: 睴
Rust:
let c = '\u{7774}';
println!("{}", c); // Output: 睴
Go:
char := '\u7774'
fmt.Printf("%c\n", char) // Output: 睴
CSS:
/* CSS content property */
.element::before {
content: "\007774"; /* 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%B4
MD5:
4e8979f76cc5c568f84db6714b0fe0f1
SHA1:
687cd33e741e1b0f741c73d2ffd4de684ffb435e
Base64:
5520