C:
char c = '\u53C5';
printf("%c\n", c); // Output: 叅
JavaScript:
const char = '\u53C5';
console.log(char); // Output: 叅
Java:
char c = '\u53C5';
System.out.println(c); // Output: 叅
JSON:
{"text": "\u53C5"} // Value: 叅
Python:
char = '\u53C5'
print(char) # Output: 叅
Perl:
my $char = "\x{53C5}";
print $char; # Output: 叅
PHP:
$char = "\x{53C5}";
echo $char; // Output: 叅
Ruby:
char = "\u{53C5}"
puts char # Output: 叅
Rust:
let c = '\u{53C5}';
println!("{}", c); // Output: 叅
Go:
char := '\u53C5'
fmt.Printf("%c\n", char) // Output: 叅
CSS:
/* CSS content property */
.element::before {
content: "\0053C5"; /* 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%8F%85
MD5:
05e6ed74288def5e3665a67da3ebc990
SHA1:
5dc3178b7a2924e6bfcfd1c279ff9dc50ac0e107
Base64:
5Y+F