C:
char c = '\u8407';
printf("%c\n", c); // Output: 萇
JavaScript:
const char = '\u8407';
console.log(char); // Output: 萇
Java:
char c = '\u8407';
System.out.println(c); // Output: 萇
JSON:
{"text": "\u8407"} // Value: 萇
Python:
char = '\u8407'
print(char) # Output: 萇
Perl:
my $char = "\x{8407}";
print $char; # Output: 萇
PHP:
$char = "\x{8407}";
echo $char; // Output: 萇
Ruby:
char = "\u{8407}"
puts char # Output: 萇
Rust:
let c = '\u{8407}';
println!("{}", c); // Output: 萇
Go:
char := '\u8407'
fmt.Printf("%c\n", char) // Output: 萇
CSS:
/* CSS content property */
.element::before {
content: "\008407"; /* 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%87
MD5:
8b7865a0d35ad0b7627a94c1104ab098
SHA1:
d3205576e9a9971fbfcdc0832fc25a611e78f81e
Base64:
6JCH