C:
char c = '\u8417';
printf("%c\n", c); // Output: 萗
JavaScript:
const char = '\u8417';
console.log(char); // Output: 萗
Java:
char c = '\u8417';
System.out.println(c); // Output: 萗
JSON:
{"text": "\u8417"} // Value: 萗
Python:
char = '\u8417'
print(char) # Output: 萗
Perl:
my $char = "\x{8417}";
print $char; # Output: 萗
PHP:
$char = "\x{8417}";
echo $char; // Output: 萗
Ruby:
char = "\u{8417}"
puts char # Output: 萗
Rust:
let c = '\u{8417}';
println!("{}", c); // Output: 萗
Go:
char := '\u8417'
fmt.Printf("%c\n", char) // Output: 萗
CSS:
/* CSS content property */
.element::before {
content: "\008417"; /* 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%97
MD5:
6f954a54113543a109f4e82858c0228c
SHA1:
2690fcddbcd2ead607af6ce0b55f09b29a2de053
Base64:
6JCX