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