C:
char c = '\u8195';
printf("%c\n", c); // Output: 膕
JavaScript:
const char = '\u8195';
console.log(char); // Output: 膕
Java:
char c = '\u8195';
System.out.println(c); // Output: 膕
JSON:
{"text": "\u8195"} // Value: 膕
Python:
char = '\u8195'
print(char) # Output: 膕
Perl:
my $char = "\x{8195}";
print $char; # Output: 膕
PHP:
$char = "\x{8195}";
echo $char; // Output: 膕
Ruby:
char = "\u{8195}"
puts char # Output: 膕
Rust:
let c = '\u{8195}';
println!("{}", c); // Output: 膕
Go:
char := '\u8195'
fmt.Printf("%c\n", char) // Output: 膕
CSS:
/* CSS content property */
.element::before {
content: "\008195"; /* 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%95
MD5:
6d1a704f19ff18014ed0ea96521db26e
SHA1:
63cc804a2e3fa55bcd45ef7ab1776c26d7032c59
Base64:
6IaV