C:
char c = '\u5299';
printf("%c\n", c); // Output: 劙
JavaScript:
const char = '\u5299';
console.log(char); // Output: 劙
Java:
char c = '\u5299';
System.out.println(c); // Output: 劙
JSON:
{"text": "\u5299"} // Value: 劙
Python:
char = '\u5299'
print(char) # Output: 劙
Perl:
my $char = "\x{5299}";
print $char; # Output: 劙
PHP:
$char = "\x{5299}";
echo $char; // Output: 劙
Ruby:
char = "\u{5299}"
puts char # Output: 劙
Rust:
let c = '\u{5299}';
println!("{}", c); // Output: 劙
Go:
char := '\u5299'
fmt.Printf("%c\n", char) // Output: 劙
CSS:
/* CSS content property */
.element::before {
content: "\005299"; /* 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%99
MD5:
7adfce1909c4de1cc8f71420ab6a9f86
SHA1:
9e0821bde5480ef24ffdc9f664f51803b36f4153
Base64:
5YqZ