C:
char c = '\u8461';
printf("%c\n", c); // Output: 葡
JavaScript:
const char = '\u8461';
console.log(char); // Output: 葡
Java:
char c = '\u8461';
System.out.println(c); // Output: 葡
JSON:
{"text": "\u8461"} // Value: 葡
Python:
char = '\u8461'
print(char) # Output: 葡
Perl:
my $char = "\x{8461}";
print $char; # Output: 葡
PHP:
$char = "\x{8461}";
echo $char; // Output: 葡
Ruby:
char = "\u{8461}"
puts char # Output: 葡
Rust:
let c = '\u{8461}';
println!("{}", c); // Output: 葡
Go:
char := '\u8461'
fmt.Printf("%c\n", char) // Output: 葡
CSS:
/* CSS content property */
.element::before {
content: "\008461"; /* 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%A1
MD5:
6369a5ded636050f04fccc9f5aa9b365
SHA1:
38da7726d7b8dfb7ff78b94adddfc204a4bfd2f6
Base64:
6JGh