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