C:
char c = '\u8473';
printf("%c\n", c); // Output: 葳
JavaScript:
const char = '\u8473';
console.log(char); // Output: 葳
Java:
char c = '\u8473';
System.out.println(c); // Output: 葳
JSON:
{"text": "\u8473"} // Value: 葳
Python:
char = '\u8473'
print(char) # Output: 葳
Perl:
my $char = "\x{8473}";
print $char; # Output: 葳
PHP:
$char = "\x{8473}";
echo $char; // Output: 葳
Ruby:
char = "\u{8473}"
puts char # Output: 葳
Rust:
let c = '\u{8473}';
println!("{}", c); // Output: 葳
Go:
char := '\u8473'
fmt.Printf("%c\n", char) // Output: 葳
CSS:
/* CSS content property */
.element::before {
content: "\008473"; /* 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%91%B3
MD5:
eb931eb2130616e9cef488166f9c81ac
SHA1:
fee81a1745e3a08e0551d63baaff849efa57bb0e
Base64:
6JGz