C:
char c = '\u7771';
printf("%c\n", c); // Output: 睱
JavaScript:
const char = '\u7771';
console.log(char); // Output: 睱
Java:
char c = '\u7771';
System.out.println(c); // Output: 睱
JSON:
{"text": "\u7771"} // Value: 睱
Python:
char = '\u7771'
print(char) # Output: 睱
Perl:
my $char = "\x{7771}";
print $char; # Output: 睱
PHP:
$char = "\x{7771}";
echo $char; // Output: 睱
Ruby:
char = "\u{7771}"
puts char # Output: 睱
Rust:
let c = '\u{7771}';
println!("{}", c); // Output: 睱
Go:
char := '\u7771'
fmt.Printf("%c\n", char) // Output: 睱
CSS:
/* CSS content property */
.element::before {
content: "\007771"; /* 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%B1
MD5:
3c0bb600cd3a1e034d0a7bd8a1d4c193
SHA1:
2282c9ec4bfc03a3461688527d4269125d9cec1d
Base64:
552x