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