C:
char c = '\u83A9';
printf("%c\n", c); // Output: 莩
JavaScript:
const char = '\u83A9';
console.log(char); // Output: 莩
Java:
char c = '\u83A9';
System.out.println(c); // Output: 莩
JSON:
{"text": "\u83A9"} // Value: 莩
Python:
char = '\u83A9'
print(char) # Output: 莩
Perl:
my $char = "\x{83A9}";
print $char; # Output: 莩
PHP:
$char = "\x{83A9}";
echo $char; // Output: 莩
Ruby:
char = "\u{83A9}"
puts char # Output: 莩
Rust:
let c = '\u{83A9}';
println!("{}", c); // Output: 莩
Go:
char := '\u83A9'
fmt.Printf("%c\n", char) // Output: 莩
CSS:
/* CSS content property */
.element::before {
content: "\0083A9"; /* 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%8E%A9
MD5:
d9a42f584933c4756694150a4733c081
SHA1:
dec38cf5a92a151ae82713ad637723606cf5de72
Base64:
6I6p