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