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