C:
char c = '\u840A';
printf("%c\n", c); // Output: 萊
JavaScript:
const char = '\u840A';
console.log(char); // Output: 萊
Java:
char c = '\u840A';
System.out.println(c); // Output: 萊
JSON:
{"text": "\u840A"} // Value: 萊
Python:
char = '\u840A'
print(char) # Output: 萊
Perl:
my $char = "\x{840A}";
print $char; # Output: 萊
PHP:
$char = "\x{840A}";
echo $char; // Output: 萊
Ruby:
char = "\u{840A}"
puts char # Output: 萊
Rust:
let c = '\u{840A}';
println!("{}", c); // Output: 萊
Go:
char := '\u840A'
fmt.Printf("%c\n", char) // Output: 萊
CSS:
/* CSS content property */
.element::before {
content: "\00840A"; /* 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%8A
MD5:
1472d5b9d7732ff6c81bf4eb565784eb
SHA1:
658dc41f44b73e1f31ef876c5a0fc705c8a0f054
Base64:
6JCK