C:
char c = '\u76AB';
printf("%c\n", c); // Output: 皫
JavaScript:
const char = '\u76AB';
console.log(char); // Output: 皫
Java:
char c = '\u76AB';
System.out.println(c); // Output: 皫
JSON:
{"text": "\u76AB"} // Value: 皫
Python:
char = '\u76AB'
print(char) # Output: 皫
Perl:
my $char = "\x{76AB}";
print $char; # Output: 皫
PHP:
$char = "\x{76AB}";
echo $char; // Output: 皫
Ruby:
char = "\u{76AB}"
puts char # Output: 皫
Rust:
let c = '\u{76AB}';
println!("{}", c); // Output: 皫
Go:
char := '\u76AB'
fmt.Printf("%c\n", char) // Output: 皫
CSS:
/* CSS content property */
.element::before {
content: "\0076AB"; /* 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=%E7%9A%AB
MD5:
4096d5c5a58be7cc8859cfbe2bd521c1
SHA1:
dfc7aae9361e436b2ffabe7f5abebeee49cccab6
Base64:
55qr