C:
char c = '\u7707';
printf("%c\n", c); // Output: 眇
JavaScript:
const char = '\u7707';
console.log(char); // Output: 眇
Java:
char c = '\u7707';
System.out.println(c); // Output: 眇
JSON:
{"text": "\u7707"} // Value: 眇
Python:
char = '\u7707'
print(char) # Output: 眇
Perl:
my $char = "\x{7707}";
print $char; # Output: 眇
PHP:
$char = "\x{7707}";
echo $char; // Output: 眇
Ruby:
char = "\u{7707}"
puts char # Output: 眇
Rust:
let c = '\u{7707}';
println!("{}", c); // Output: 眇
Go:
char := '\u7707'
fmt.Printf("%c\n", char) // Output: 眇
CSS:
/* CSS content property */
.element::before {
content: "\007707"; /* 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%9C%87
MD5:
2a4997fcac6154c2a41451df8b76d877
SHA1:
2ba501405387eec20feb2da0ebc5e0550f3bfa77
Base64:
55yH