C:
char c = '\u654A';
printf("%c\n", c); // Output: 敊
JavaScript:
const char = '\u654A';
console.log(char); // Output: 敊
Java:
char c = '\u654A';
System.out.println(c); // Output: 敊
JSON:
{"text": "\u654A"} // Value: 敊
Python:
char = '\u654A'
print(char) # Output: 敊
Perl:
my $char = "\x{654A}";
print $char; # Output: 敊
PHP:
$char = "\x{654A}";
echo $char; // Output: 敊
Ruby:
char = "\u{654A}"
puts char # Output: 敊
Rust:
let c = '\u{654A}';
println!("{}", c); // Output: 敊
Go:
char := '\u654A'
fmt.Printf("%c\n", char) // Output: 敊
CSS:
/* CSS content property */
.element::before {
content: "\00654A"; /* 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=%E6%95%8A
MD5:
0f82546490c05177b564e55f8019fb90
SHA1:
63085f0c4096ba79cb60705c0ac0cf30180ad1ee
Base64:
5pWK