C:
char c = '\u8420';
printf("%c\n", c); // Output: 萠
JavaScript:
const char = '\u8420';
console.log(char); // Output: 萠
Java:
char c = '\u8420';
System.out.println(c); // Output: 萠
JSON:
{"text": "\u8420"} // Value: 萠
Python:
char = '\u8420'
print(char) # Output: 萠
Perl:
my $char = "\x{8420}";
print $char; # Output: 萠
PHP:
$char = "\x{8420}";
echo $char; // Output: 萠
Ruby:
char = "\u{8420}"
puts char # Output: 萠
Rust:
let c = '\u{8420}';
println!("{}", c); // Output: 萠
Go:
char := '\u8420'
fmt.Printf("%c\n", char) // Output: 萠
CSS:
/* CSS content property */
.element::before {
content: "\008420"; /* 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%A0
MD5:
86657e178db04cc9bacd0325b5e644ba
SHA1:
52776a9dcdb2e0ab6ef17ab2d926e3116982f440
Base64:
6JCg