C:
char c = '\u8703';
printf("%c\n", c); // Output: 蜃
JavaScript:
const char = '\u8703';
console.log(char); // Output: 蜃
Java:
char c = '\u8703';
System.out.println(c); // Output: 蜃
JSON:
{"text": "\u8703"} // Value: 蜃
Python:
char = '\u8703'
print(char) # Output: 蜃
Perl:
my $char = "\x{8703}";
print $char; # Output: 蜃
PHP:
$char = "\x{8703}";
echo $char; // Output: 蜃
Ruby:
char = "\u{8703}"
puts char # Output: 蜃
Rust:
let c = '\u{8703}';
println!("{}", c); // Output: 蜃
Go:
char := '\u8703'
fmt.Printf("%c\n", char) // Output: 蜃
CSS:
/* CSS content property */
.element::before {
content: "\008703"; /* 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%83
MD5:
fc6855c17df2c1bf8c36915dc55536f2
SHA1:
b0af27e6e668bec18cfe5e5b86c2c5b268e021ed
Base64:
6JyD