C:
char c = '\u8416';
printf("%c\n", c); // Output: 萖
JavaScript:
const char = '\u8416';
console.log(char); // Output: 萖
Java:
char c = '\u8416';
System.out.println(c); // Output: 萖
JSON:
{"text": "\u8416"} // Value: 萖
Python:
char = '\u8416'
print(char) # Output: 萖
Perl:
my $char = "\x{8416}";
print $char; # Output: 萖
PHP:
$char = "\x{8416}";
echo $char; // Output: 萖
Ruby:
char = "\u{8416}"
puts char # Output: 萖
Rust:
let c = '\u{8416}';
println!("{}", c); // Output: 萖
Go:
char := '\u8416'
fmt.Printf("%c\n", char) // Output: 萖
CSS:
/* CSS content property */
.element::before {
content: "\008416"; /* 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%96
MD5:
81963465ae3176bfbd13704045314ea6
SHA1:
0c5a365028389b6d10ea6299b386b6075f670827
Base64:
6JCW