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