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