C:
char c = '\u7795';
printf("%c\n", c); // Output: 瞕
JavaScript:
const char = '\u7795';
console.log(char); // Output: 瞕
Java:
char c = '\u7795';
System.out.println(c); // Output: 瞕
JSON:
{"text": "\u7795"} // Value: 瞕
Python:
char = '\u7795'
print(char) # Output: 瞕
Perl:
my $char = "\x{7795}";
print $char; # Output: 瞕
PHP:
$char = "\x{7795}";
echo $char; // Output: 瞕
Ruby:
char = "\u{7795}"
puts char # Output: 瞕
Rust:
let c = '\u{7795}';
println!("{}", c); // Output: 瞕
Go:
char := '\u7795'
fmt.Printf("%c\n", char) // Output: 瞕
CSS:
/* CSS content property */
.element::before {
content: "\007795"; /* 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%95
MD5:
85f4aa0c5e3d8f53d1d8b056ad9115bf
SHA1:
d714918f212c9b7b29e9aa046b449ca66580aca4
Base64:
556V