C:
char c = '\u83C2';
printf("%c\n", c); // Output: 菂
JavaScript:
const char = '\u83C2';
console.log(char); // Output: 菂
Java:
char c = '\u83C2';
System.out.println(c); // Output: 菂
JSON:
{"text": "\u83C2"} // Value: 菂
Python:
char = '\u83C2'
print(char) # Output: 菂
Perl:
my $char = "\x{83C2}";
print $char; # Output: 菂
PHP:
$char = "\x{83C2}";
echo $char; // Output: 菂
Ruby:
char = "\u{83C2}"
puts char # Output: 菂
Rust:
let c = '\u{83C2}';
println!("{}", c); // Output: 菂
Go:
char := '\u83C2'
fmt.Printf("%c\n", char) // Output: 菂
CSS:
/* CSS content property */
.element::before {
content: "\0083C2"; /* 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%8F%82
MD5:
4d840c229229e5b9122eb05263717cc0
SHA1:
e85fefe2520f860d00b657d07658f28a8bf4fe61
Base64:
6I+C