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