C:
char c = '\u7709';
printf("%c\n", c); // Output: 眉
JavaScript:
const char = '\u7709';
console.log(char); // Output: 眉
Java:
char c = '\u7709';
System.out.println(c); // Output: 眉
JSON:
{"text": "\u7709"} // Value: 眉
Python:
char = '\u7709'
print(char) # Output: 眉
Perl:
my $char = "\x{7709}";
print $char; # Output: 眉
PHP:
$char = "\x{7709}";
echo $char; // Output: 眉
Ruby:
char = "\u{7709}"
puts char # Output: 眉
Rust:
let c = '\u{7709}';
println!("{}", c); // Output: 眉
Go:
char := '\u7709'
fmt.Printf("%c\n", char) // Output: 眉
CSS:
/* CSS content property */
.element::before {
content: "\007709"; /* 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%89
MD5:
224e0df43a693a40ca81f7375d9a1ac1
SHA1:
89254e5b9f84d28a130ce33e11e3a089333e05e1
Base64:
55yJ