C:
char c = '\u52A4';
printf("%c\n", c); // Output: 劤
JavaScript:
const char = '\u52A4';
console.log(char); // Output: 劤
Java:
char c = '\u52A4';
System.out.println(c); // Output: 劤
JSON:
{"text": "\u52A4"} // Value: 劤
Python:
char = '\u52A4'
print(char) # Output: 劤
Perl:
my $char = "\x{52A4}";
print $char; # Output: 劤
PHP:
$char = "\x{52A4}";
echo $char; // Output: 劤
Ruby:
char = "\u{52A4}"
puts char # Output: 劤
Rust:
let c = '\u{52A4}';
println!("{}", c); // Output: 劤
Go:
char := '\u52A4'
fmt.Printf("%c\n", char) // Output: 劤
CSS:
/* CSS content property */
.element::before {
content: "\0052A4"; /* 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%A4
MD5:
1b2c2825f873d2ac26cfd647098752dc
SHA1:
b8379c45eb36fa1f9f303a3187d2c3bccd194615
Base64:
5Yqk