C:
char c = '\u8401';
printf("%c\n", c); // Output: 萁
JavaScript:
const char = '\u8401';
console.log(char); // Output: 萁
Java:
char c = '\u8401';
System.out.println(c); // Output: 萁
JSON:
{"text": "\u8401"} // Value: 萁
Python:
char = '\u8401'
print(char) # Output: 萁
Perl:
my $char = "\x{8401}";
print $char; # Output: 萁
PHP:
$char = "\x{8401}";
echo $char; // Output: 萁
Ruby:
char = "\u{8401}"
puts char # Output: 萁
Rust:
let c = '\u{8401}';
println!("{}", c); // Output: 萁
Go:
char := '\u8401'
fmt.Printf("%c\n", char) // Output: 萁
CSS:
/* CSS content property */
.element::before {
content: "\008401"; /* 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%81
MD5:
32466bdef3242fed539b5c628eae5dd3
SHA1:
5117fce268c8a6df9e10f17c2b0466fc64f13180
Base64:
6JCB