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