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