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