C:
char c = '\u81CC';
printf("%c\n", c); // Output: 臌
JavaScript:
const char = '\u81CC';
console.log(char); // Output: 臌
Java:
char c = '\u81CC';
System.out.println(c); // Output: 臌
JSON:
{"text": "\u81CC"} // Value: 臌
Python:
char = '\u81CC'
print(char) # Output: 臌
Perl:
my $char = "\x{81CC}";
print $char; # Output: 臌
PHP:
$char = "\x{81CC}";
echo $char; // Output: 臌
Ruby:
char = "\u{81CC}"
puts char # Output: 臌
Rust:
let c = '\u{81CC}';
println!("{}", c); // Output: 臌
Go:
char := '\u81CC'
fmt.Printf("%c\n", char) // Output: 臌
CSS:
/* CSS content property */
.element::before {
content: "\0081CC"; /* 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%87%8C
MD5:
a676e7b572fd90738d1a552ec02cbca3
SHA1:
22dbd8fa8f688e367b59683aac7306c6d67dfbd2
Base64:
6IeM