C:
char c = '\u7781';
printf("%c\n", c); // Output: 瞁
JavaScript:
const char = '\u7781';
console.log(char); // Output: 瞁
Java:
char c = '\u7781';
System.out.println(c); // Output: 瞁
JSON:
{"text": "\u7781"} // Value: 瞁
Python:
char = '\u7781'
print(char) # Output: 瞁
Perl:
my $char = "\x{7781}";
print $char; # Output: 瞁
PHP:
$char = "\x{7781}";
echo $char; // Output: 瞁
Ruby:
char = "\u{7781}"
puts char # Output: 瞁
Rust:
let c = '\u{7781}';
println!("{}", c); // Output: 瞁
Go:
char := '\u7781'
fmt.Printf("%c\n", char) // Output: 瞁
CSS:
/* CSS content property */
.element::before {
content: "\007781"; /* 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%81
MD5:
7d6b4cbdf3827c3e4f45bacadfaf188a
SHA1:
4b351c7a5285ae429f9d620d56bade6868062e40
Base64:
556B