C:
char c = '\u8426';
printf("%c\n", c); // Output: 萦
JavaScript:
const char = '\u8426';
console.log(char); // Output: 萦
Java:
char c = '\u8426';
System.out.println(c); // Output: 萦
JSON:
{"text": "\u8426"} // Value: 萦
Python:
char = '\u8426'
print(char) # Output: 萦
Perl:
my $char = "\x{8426}";
print $char; # Output: 萦
PHP:
$char = "\x{8426}";
echo $char; // Output: 萦
Ruby:
char = "\u{8426}"
puts char # Output: 萦
Rust:
let c = '\u{8426}';
println!("{}", c); // Output: 萦
Go:
char := '\u8426'
fmt.Printf("%c\n", char) // Output: 萦
CSS:
/* CSS content property */
.element::before {
content: "\008426"; /* 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%A6
MD5:
d7c52c4c5b3a0e840f23f702bb5a7cee
SHA1:
1eee194c83ba241ba93252909fb33c6dc09365d2
Base64:
6JCm