C:
char c = '\u8440';
printf("%c\n", c); // Output: 葀
JavaScript:
const char = '\u8440';
console.log(char); // Output: 葀
Java:
char c = '\u8440';
System.out.println(c); // Output: 葀
JSON:
{"text": "\u8440"} // Value: 葀
Python:
char = '\u8440'
print(char) # Output: 葀
Perl:
my $char = "\x{8440}";
print $char; # Output: 葀
PHP:
$char = "\x{8440}";
echo $char; // Output: 葀
Ruby:
char = "\u{8440}"
puts char # Output: 葀
Rust:
let c = '\u{8440}';
println!("{}", c); // Output: 葀
Go:
char := '\u8440'
fmt.Printf("%c\n", char) // Output: 葀
CSS:
/* CSS content property */
.element::before {
content: "\008440"; /* 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%91%80
MD5:
d0c2950936d5c26b5d3225bdd330e709
SHA1:
b9fc5bb61b3af4a4429363be9d6d9173a702494c
Base64:
6JGA