C:
char c = '\u7793';
printf("%c\n", c); // Output: 瞓
JavaScript:
const char = '\u7793';
console.log(char); // Output: 瞓
Java:
char c = '\u7793';
System.out.println(c); // Output: 瞓
JSON:
{"text": "\u7793"} // Value: 瞓
Python:
char = '\u7793'
print(char) # Output: 瞓
Perl:
my $char = "\x{7793}";
print $char; # Output: 瞓
PHP:
$char = "\x{7793}";
echo $char; // Output: 瞓
Ruby:
char = "\u{7793}"
puts char # Output: 瞓
Rust:
let c = '\u{7793}';
println!("{}", c); // Output: 瞓
Go:
char := '\u7793'
fmt.Printf("%c\n", char) // Output: 瞓
CSS:
/* CSS content property */
.element::before {
content: "\007793"; /* 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%9E%93
MD5:
ed9bb1a35dd022b1e77152e4f8754c5f
SHA1:
b10aa806a56c4beb34800204de48b82e2ecdf999
Base64:
556T