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