C:
char c = '\u8423';
printf("%c\n", c); // Output: 萣
JavaScript:
const char = '\u8423';
console.log(char); // Output: 萣
Java:
char c = '\u8423';
System.out.println(c); // Output: 萣
JSON:
{"text": "\u8423"} // Value: 萣
Python:
char = '\u8423'
print(char) # Output: 萣
Perl:
my $char = "\x{8423}";
print $char; # Output: 萣
PHP:
$char = "\x{8423}";
echo $char; // Output: 萣
Ruby:
char = "\u{8423}"
puts char # Output: 萣
Rust:
let c = '\u{8423}';
println!("{}", c); // Output: 萣
Go:
char := '\u8423'
fmt.Printf("%c\n", char) // Output: 萣
CSS:
/* CSS content property */
.element::before {
content: "\008423"; /* 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%90%A3
MD5:
fe39c91c6e865b61ea698419d2631aee
SHA1:
21656f05341c2fc6b7de056053fe3a59ea09e55a
Base64:
6JCj