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