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