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