C:
char c = '\u8412';
printf("%c\n", c); // Output: 萒
JavaScript:
const char = '\u8412';
console.log(char); // Output: 萒
Java:
char c = '\u8412';
System.out.println(c); // Output: 萒
JSON:
{"text": "\u8412"} // Value: 萒
Python:
char = '\u8412'
print(char) # Output: 萒
Perl:
my $char = "\x{8412}";
print $char; # Output: 萒
PHP:
$char = "\x{8412}";
echo $char; // Output: 萒
Ruby:
char = "\u{8412}"
puts char # Output: 萒
Rust:
let c = '\u{8412}';
println!("{}", c); // Output: 萒
Go:
char := '\u8412'
fmt.Printf("%c\n", char) // Output: 萒
CSS:
/* CSS content property */
.element::before {
content: "\008412"; /* 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%92
MD5:
944040c6a4057120e599379093cd583d
SHA1:
fc28a61aa74cb55d7ce6e9524f8b04f907540a9e
Base64:
6JCS