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