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