C:
char c = '\u7728';
printf("%c\n", c); // Output: 眨
JavaScript:
const char = '\u7728';
console.log(char); // Output: 眨
Java:
char c = '\u7728';
System.out.println(c); // Output: 眨
JSON:
{"text": "\u7728"} // Value: 眨
Python:
char = '\u7728'
print(char) # Output: 眨
Perl:
my $char = "\x{7728}";
print $char; # Output: 眨
PHP:
$char = "\x{7728}";
echo $char; // Output: 眨
Ruby:
char = "\u{7728}"
puts char # Output: 眨
Rust:
let c = '\u{7728}';
println!("{}", c); // Output: 眨
Go:
char := '\u7728'
fmt.Printf("%c\n", char) // Output: 眨
CSS:
/* CSS content property */
.element::before {
content: "\007728"; /* 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%A8
MD5:
a92e92418f9cc067e2e455d054b1580a
SHA1:
e1432ab5616f97de07f594b63182b75c5362f17b
Base64:
55yo