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