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