C:
char c = '\u8433';
printf("%c\n", c); // Output: 萳
JavaScript:
const char = '\u8433';
console.log(char); // Output: 萳
Java:
char c = '\u8433';
System.out.println(c); // Output: 萳
JSON:
{"text": "\u8433"} // Value: 萳
Python:
char = '\u8433'
print(char) # Output: 萳
Perl:
my $char = "\x{8433}";
print $char; # Output: 萳
PHP:
$char = "\x{8433}";
echo $char; // Output: 萳
Ruby:
char = "\u{8433}"
puts char # Output: 萳
Rust:
let c = '\u{8433}';
println!("{}", c); // Output: 萳
Go:
char := '\u8433'
fmt.Printf("%c\n", char) // Output: 萳
CSS:
/* CSS content property */
.element::before {
content: "\008433"; /* 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%B3
MD5:
3a097d7c3b0d2ce8b0dd70ec726f7977
SHA1:
5959e64d91fcaf6d2a1ada9055171972e584cd3e
Base64:
6JCz