C:
char c = '\u5298';
printf("%c\n", c); // Output: 劘
JavaScript:
const char = '\u5298';
console.log(char); // Output: 劘
Java:
char c = '\u5298';
System.out.println(c); // Output: 劘
JSON:
{"text": "\u5298"} // Value: 劘
Python:
char = '\u5298'
print(char) # Output: 劘
Perl:
my $char = "\x{5298}";
print $char; # Output: 劘
PHP:
$char = "\x{5298}";
echo $char; // Output: 劘
Ruby:
char = "\u{5298}"
puts char # Output: 劘
Rust:
let c = '\u{5298}';
println!("{}", c); // Output: 劘
Go:
char := '\u5298'
fmt.Printf("%c\n", char) // Output: 劘
CSS:
/* CSS content property */
.element::before {
content: "\005298"; /* 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%98
MD5:
b3317469ebda38be033df77e49377e96
SHA1:
df793872505d7b62b02a1aedf92045a016999bc9
Base64:
5YqY