C:
char c = '\u77AD';
printf("%c\n", c); // Output: 瞭
JavaScript:
const char = '\u77AD';
console.log(char); // Output: 瞭
Java:
char c = '\u77AD';
System.out.println(c); // Output: 瞭
JSON:
{"text": "\u77AD"} // Value: 瞭
Python:
char = '\u77AD'
print(char) # Output: 瞭
Perl:
my $char = "\x{77AD}";
print $char; # Output: 瞭
PHP:
$char = "\x{77AD}";
echo $char; // Output: 瞭
Ruby:
char = "\u{77AD}"
puts char # Output: 瞭
Rust:
let c = '\u{77AD}';
println!("{}", c); // Output: 瞭
Go:
char := '\u77AD'
fmt.Printf("%c\n", char) // Output: 瞭
CSS:
/* CSS content property */
.element::before {
content: "\0077AD"; /* 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%AD
MD5:
6d27f4d58d18cd746d56f22ccca8f2e4
SHA1:
c4d52d19d11e98a99a2b23e5b6f00947f9ff90cf
Base64:
556t