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