C:
char c = '\u7683';
printf("%c\n", c); // Output: 皃
JavaScript:
const char = '\u7683';
console.log(char); // Output: 皃
Java:
char c = '\u7683';
System.out.println(c); // Output: 皃
JSON:
{"text": "\u7683"} // Value: 皃
Python:
char = '\u7683'
print(char) # Output: 皃
Perl:
my $char = "\x{7683}";
print $char; # Output: 皃
PHP:
$char = "\x{7683}";
echo $char; // Output: 皃
Ruby:
char = "\u{7683}"
puts char # Output: 皃
Rust:
let c = '\u{7683}';
println!("{}", c); // Output: 皃
Go:
char := '\u7683'
fmt.Printf("%c\n", char) // Output: 皃
CSS:
/* CSS content property */
.element::before {
content: "\007683"; /* 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%83
MD5:
09e442339d4bfe292940af4454aa0080
SHA1:
426b08afa515c63ed411dcbdafdd829d25f69986
Base64:
55qD