C:
char c = '\u8467';
printf("%c\n", c); // Output: 葧
JavaScript:
const char = '\u8467';
console.log(char); // Output: 葧
Java:
char c = '\u8467';
System.out.println(c); // Output: 葧
JSON:
{"text": "\u8467"} // Value: 葧
Python:
char = '\u8467'
print(char) # Output: 葧
Perl:
my $char = "\x{8467}";
print $char; # Output: 葧
PHP:
$char = "\x{8467}";
echo $char; // Output: 葧
Ruby:
char = "\u{8467}"
puts char # Output: 葧
Rust:
let c = '\u{8467}';
println!("{}", c); // Output: 葧
Go:
char := '\u8467'
fmt.Printf("%c\n", char) // Output: 葧
CSS:
/* CSS content property */
.element::before {
content: "\008467"; /* 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%A7
MD5:
a19d7cb3ca638d31d1fc24694e738ff3
SHA1:
838b636f472919708e7dd000c65e830337704548
Base64:
6JGn