C:
char c = '\u80E6';
printf("%c\n", c); // Output: 胦
JavaScript:
const char = '\u80E6';
console.log(char); // Output: 胦
Java:
char c = '\u80E6';
System.out.println(c); // Output: 胦
JSON:
{"text": "\u80E6"} // Value: 胦
Python:
char = '\u80E6'
print(char) # Output: 胦
Perl:
my $char = "\x{80E6}";
print $char; # Output: 胦
PHP:
$char = "\x{80E6}";
echo $char; // Output: 胦
Ruby:
char = "\u{80E6}"
puts char # Output: 胦
Rust:
let c = '\u{80E6}';
println!("{}", c); // Output: 胦
Go:
char := '\u80E6'
fmt.Printf("%c\n", char) // Output: 胦
CSS:
/* CSS content property */
.element::before {
content: "\0080E6"; /* 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%A6
MD5:
92a6ff21c12632b52e0424475e9bf785
SHA1:
717facebb77014278fd11b038e498708ccfa6a8b
Base64:
6IOm