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