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