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