C:
char c = '\u8C51';
printf("%c\n", c); // Output: 豑
JavaScript:
const char = '\u8C51';
console.log(char); // Output: 豑
Java:
char c = '\u8C51';
System.out.println(c); // Output: 豑
JSON:
{"text": "\u8C51"} // Value: 豑
Python:
char = '\u8C51'
print(char) # Output: 豑
Perl:
my $char = "\x{8C51}";
print $char; # Output: 豑
PHP:
$char = "\x{8C51}";
echo $char; // Output: 豑
Ruby:
char = "\u{8C51}"
puts char # Output: 豑
Rust:
let c = '\u{8C51}';
println!("{}", c); // Output: 豑
Go:
char := '\u8C51'
fmt.Printf("%c\n", char) // Output: 豑
CSS:
/* CSS content property */
.element::before {
content: "\008C51"; /* 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%B1%91
MD5:
9526887ab97294f29356747c2c3ff16e
SHA1:
320eb872a74f4e3edaf415e8dfb0b76d9d17b7ae
Base64:
6LGR