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