C:
char c = '\u8406';
printf("%c\n", c); // Output: 萆
JavaScript:
const char = '\u8406';
console.log(char); // Output: 萆
Java:
char c = '\u8406';
System.out.println(c); // Output: 萆
JSON:
{"text": "\u8406"} // Value: 萆
Python:
char = '\u8406'
print(char) # Output: 萆
Perl:
my $char = "\x{8406}";
print $char; # Output: 萆
PHP:
$char = "\x{8406}";
echo $char; // Output: 萆
Ruby:
char = "\u{8406}"
puts char # Output: 萆
Rust:
let c = '\u{8406}';
println!("{}", c); // Output: 萆
Go:
char := '\u8406'
fmt.Printf("%c\n", char) // Output: 萆
CSS:
/* CSS content property */
.element::before {
content: "\008406"; /* 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%86
MD5:
16d2b47fc18d9b0e2ffe9c17ff8b6df5
SHA1:
b2926f84619a2218f5e923c1f7c160e30ca0da51
Base64:
6JCG