C:
char c = '\u8421';
printf("%c\n", c); // Output: 萡
JavaScript:
const char = '\u8421';
console.log(char); // Output: 萡
Java:
char c = '\u8421';
System.out.println(c); // Output: 萡
JSON:
{"text": "\u8421"} // Value: 萡
Python:
char = '\u8421'
print(char) # Output: 萡
Perl:
my $char = "\x{8421}";
print $char; # Output: 萡
PHP:
$char = "\x{8421}";
echo $char; // Output: 萡
Ruby:
char = "\u{8421}"
puts char # Output: 萡
Rust:
let c = '\u{8421}';
println!("{}", c); // Output: 萡
Go:
char := '\u8421'
fmt.Printf("%c\n", char) // Output: 萡
CSS:
/* CSS content property */
.element::before {
content: "\008421"; /* 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%A1
MD5:
dbf2a0c3f1e4d628ec8fbf3d13acd9ab
SHA1:
086435e977eeaa024d65443cff894f4aa268cc1e
Base64:
6JCh