C:
char c = '\u8427';
printf("%c\n", c); // Output: 萧
JavaScript:
const char = '\u8427';
console.log(char); // Output: 萧
Java:
char c = '\u8427';
System.out.println(c); // Output: 萧
JSON:
{"text": "\u8427"} // Value: 萧
Python:
char = '\u8427'
print(char) # Output: 萧
Perl:
my $char = "\x{8427}";
print $char; # Output: 萧
PHP:
$char = "\x{8427}";
echo $char; // Output: 萧
Ruby:
char = "\u{8427}"
puts char # Output: 萧
Rust:
let c = '\u{8427}';
println!("{}", c); // Output: 萧
Go:
char := '\u8427'
fmt.Printf("%c\n", char) // Output: 萧
CSS:
/* CSS content property */
.element::before {
content: "\008427"; /* 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%A7
MD5:
9af3af34c4a8abb3a7649f4ea2fcf2fa
SHA1:
11663b100735d188dd6c5041ad55f59302449b5f
Base64:
6JCn