C:
char c = '\u8411';
printf("%c\n", c); // Output: 萑
JavaScript:
const char = '\u8411';
console.log(char); // Output: 萑
Java:
char c = '\u8411';
System.out.println(c); // Output: 萑
JSON:
{"text": "\u8411"} // Value: 萑
Python:
char = '\u8411'
print(char) # Output: 萑
Perl:
my $char = "\x{8411}";
print $char; # Output: 萑
PHP:
$char = "\x{8411}";
echo $char; // Output: 萑
Ruby:
char = "\u{8411}"
puts char # Output: 萑
Rust:
let c = '\u{8411}';
println!("{}", c); // Output: 萑
Go:
char := '\u8411'
fmt.Printf("%c\n", char) // Output: 萑
CSS:
/* CSS content property */
.element::before {
content: "\008411"; /* 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%91
MD5:
d73a2f80fac4c9337bb76561ddfdedec
SHA1:
b47ea0baaf7121fc51bf2c63cb2b3348fd454358
Base64:
6JCR