C:
char c = '\u6492';
printf("%c\n", c); // Output: 撒
JavaScript:
const char = '\u6492';
console.log(char); // Output: 撒
Java:
char c = '\u6492';
System.out.println(c); // Output: 撒
JSON:
{"text": "\u6492"} // Value: 撒
Python:
char = '\u6492'
print(char) # Output: 撒
Perl:
my $char = "\x{6492}";
print $char; # Output: 撒
PHP:
$char = "\x{6492}";
echo $char; // Output: 撒
Ruby:
char = "\u{6492}"
puts char # Output: 撒
Rust:
let c = '\u{6492}';
println!("{}", c); // Output: 撒
Go:
char := '\u6492'
fmt.Printf("%c\n", char) // Output: 撒
CSS:
/* CSS content property */
.element::before {
content: "\006492"; /* 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%92%92
MD5:
a66646fb9e861196d5a73bcd3bf08376
SHA1:
4dab5d0f510f0a8a7058a494b342d56fc21e7b0f
Base64:
5pKS