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