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