C:
char c = '\u80C2';
printf("%c\n", c); // Output: 胂
JavaScript:
const char = '\u80C2';
console.log(char); // Output: 胂
Java:
char c = '\u80C2';
System.out.println(c); // Output: 胂
JSON:
{"text": "\u80C2"} // Value: 胂
Python:
char = '\u80C2'
print(char) # Output: 胂
Perl:
my $char = "\x{80C2}";
print $char; # Output: 胂
PHP:
$char = "\x{80C2}";
echo $char; // Output: 胂
Ruby:
char = "\u{80C2}"
puts char # Output: 胂
Rust:
let c = '\u{80C2}';
println!("{}", c); // Output: 胂
Go:
char := '\u80C2'
fmt.Printf("%c\n", char) // Output: 胂
CSS:
/* CSS content property */
.element::before {
content: "\0080C2"; /* 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%83%82
MD5:
c7d494ad9a86119c9b309c172a739424
SHA1:
9d8d12bb81939d2a24c84ac0ae62967fd4ff8025
Base64:
6IOC