C:
char c = '\u52AF';
printf("%c\n", c); // Output: 劯
JavaScript:
const char = '\u52AF';
console.log(char); // Output: 劯
Java:
char c = '\u52AF';
System.out.println(c); // Output: 劯
JSON:
{"text": "\u52AF"} // Value: 劯
Python:
char = '\u52AF'
print(char) # Output: 劯
Perl:
my $char = "\x{52AF}";
print $char; # Output: 劯
PHP:
$char = "\x{52AF}";
echo $char; // Output: 劯
Ruby:
char = "\u{52AF}"
puts char # Output: 劯
Rust:
let c = '\u{52AF}';
println!("{}", c); // Output: 劯
Go:
char := '\u52AF'
fmt.Printf("%c\n", char) // Output: 劯
CSS:
/* CSS content property */
.element::before {
content: "\0052AF"; /* 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=%E5%8A%AF
MD5:
148cae789ecee4497105fe8cb1165797
SHA1:
3807d0fd1f06e85724ca9f76cef57caf291413be
Base64:
5Yqv