C:
char c = '\u8462';
printf("%c\n", c); // Output: 葢
JavaScript:
const char = '\u8462';
console.log(char); // Output: 葢
Java:
char c = '\u8462';
System.out.println(c); // Output: 葢
JSON:
{"text": "\u8462"} // Value: 葢
Python:
char = '\u8462'
print(char) # Output: 葢
Perl:
my $char = "\x{8462}";
print $char; # Output: 葢
PHP:
$char = "\x{8462}";
echo $char; // Output: 葢
Ruby:
char = "\u{8462}"
puts char # Output: 葢
Rust:
let c = '\u{8462}';
println!("{}", c); // Output: 葢
Go:
char := '\u8462'
fmt.Printf("%c\n", char) // Output: 葢
CSS:
/* CSS content property */
.element::before {
content: "\008462"; /* 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%A2
MD5:
ebd3474d3e7fb771d5a6e1af7f407331
SHA1:
7c527f49cb2b10e990c425ebe30ab777da7ea5e3
Base64:
6JGi