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