C:
char c = '\u8189';
printf("%c\n", c); // Output: 膉
JavaScript:
const char = '\u8189';
console.log(char); // Output: 膉
Java:
char c = '\u8189';
System.out.println(c); // Output: 膉
JSON:
{"text": "\u8189"} // Value: 膉
Python:
char = '\u8189'
print(char) # Output: 膉
Perl:
my $char = "\x{8189}";
print $char; # Output: 膉
PHP:
$char = "\x{8189}";
echo $char; // Output: 膉
Ruby:
char = "\u{8189}"
puts char # Output: 膉
Rust:
let c = '\u{8189}';
println!("{}", c); // Output: 膉
Go:
char := '\u8189'
fmt.Printf("%c\n", char) // Output: 膉
CSS:
/* CSS content property */
.element::before {
content: "\008189"; /* 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%89
MD5:
cd8c8ebd2ca37183968e5198d0ede5e4
SHA1:
8b67711665c60f23fec8bcb56453efa7f828a2bb
Base64:
6IaJ