C:
char c = '\u8428';
printf("%c\n", c); // Output: 萨
JavaScript:
const char = '\u8428';
console.log(char); // Output: 萨
Java:
char c = '\u8428';
System.out.println(c); // Output: 萨
JSON:
{"text": "\u8428"} // Value: 萨
Python:
char = '\u8428'
print(char) # Output: 萨
Perl:
my $char = "\x{8428}";
print $char; # Output: 萨
PHP:
$char = "\x{8428}";
echo $char; // Output: 萨
Ruby:
char = "\u{8428}"
puts char # Output: 萨
Rust:
let c = '\u{8428}';
println!("{}", c); // Output: 萨
Go:
char := '\u8428'
fmt.Printf("%c\n", char) // Output: 萨
CSS:
/* CSS content property */
.element::before {
content: "\008428"; /* 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=%E8%90%A8
MD5:
2530ef4a140521e8cdfd838f3b90df12
SHA1:
9d3bf80497b0c953dcc7fc3bd31749d592a45a48
Base64:
6JCo