C:
char c = '\u4EE9';
printf("%c\n", c); // Output: 仩
JavaScript:
const char = '\u4EE9';
console.log(char); // Output: 仩
Java:
char c = '\u4EE9';
System.out.println(c); // Output: 仩
JSON:
{"text": "\u4EE9"} // Value: 仩
Python:
char = '\u4EE9'
print(char) # Output: 仩
Perl:
my $char = "\x{4EE9}";
print $char; # Output: 仩
PHP:
$char = "\x{4EE9}";
echo $char; // Output: 仩
Ruby:
char = "\u{4EE9}"
puts char # Output: 仩
Rust:
let c = '\u{4EE9}';
println!("{}", c); // Output: 仩
Go:
char := '\u4EE9'
fmt.Printf("%c\n", char) // Output: 仩
CSS:
/* CSS content property */
.element::before {
content: "\004EE9"; /* 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=%E4%BB%A9
MD5:
a65f2de28e00a83b6c21765cf2afe186
SHA1:
ff20d550c1005b22fd49f4f3129ebba5f9407823
Base64:
5Lup