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