C:
char c = '\u882B';
printf("%c\n", c); // Output: 蠫
JavaScript:
const char = '\u882B';
console.log(char); // Output: 蠫
Java:
char c = '\u882B';
System.out.println(c); // Output: 蠫
JSON:
{"text": "\u882B"} // Value: 蠫
Python:
char = '\u882B'
print(char) # Output: 蠫
Perl:
my $char = "\x{882B}";
print $char; # Output: 蠫
PHP:
$char = "\x{882B}";
echo $char; // Output: 蠫
Ruby:
char = "\u{882B}"
puts char # Output: 蠫
Rust:
let c = '\u{882B}';
println!("{}", c); // Output: 蠫
Go:
char := '\u882B'
fmt.Printf("%c\n", char) // Output: 蠫
CSS:
/* CSS content property */
.element::before {
content: "\00882B"; /* 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%A0%AB
MD5:
023774d80eb8124ad890390cd8f10164
SHA1:
de4cc2efeb5ec2d4e67c08fc4d4508ec47d95e7a
Base64:
6KCr