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