C:
char c = '\u8410';
printf("%c\n", c); // Output: 萐
JavaScript:
const char = '\u8410';
console.log(char); // Output: 萐
Java:
char c = '\u8410';
System.out.println(c); // Output: 萐
JSON:
{"text": "\u8410"} // Value: 萐
Python:
char = '\u8410'
print(char) # Output: 萐
Perl:
my $char = "\x{8410}";
print $char; # Output: 萐
PHP:
$char = "\x{8410}";
echo $char; // Output: 萐
Ruby:
char = "\u{8410}"
puts char # Output: 萐
Rust:
let c = '\u{8410}';
println!("{}", c); // Output: 萐
Go:
char := '\u8410'
fmt.Printf("%c\n", char) // Output: 萐
CSS:
/* CSS content property */
.element::before {
content: "\008410"; /* 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%90
MD5:
d00af6fd256d62aa9b454878fb5392c4
SHA1:
9c64f80e5408fd64ebbba1b1e055a02e4c87ffac
Base64:
6JCQ