C:
char c = '\u8363';
printf("%c\n", c); // Output: 荣
JavaScript:
const char = '\u8363';
console.log(char); // Output: 荣
Java:
char c = '\u8363';
System.out.println(c); // Output: 荣
JSON:
{"text": "\u8363"} // Value: 荣
Python:
char = '\u8363'
print(char) # Output: 荣
Perl:
my $char = "\x{8363}";
print $char; # Output: 荣
PHP:
$char = "\x{8363}";
echo $char; // Output: 荣
Ruby:
char = "\u{8363}"
puts char # Output: 荣
Rust:
let c = '\u{8363}';
println!("{}", c); // Output: 荣
Go:
char := '\u8363'
fmt.Printf("%c\n", char) // Output: 荣
CSS:
/* CSS content property */
.element::before {
content: "\008363"; /* 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%8D%A3
MD5:
ed55be8ad771baff502226277a4aea91
SHA1:
72d9b9a222595be83bdf4d4222ebe321189ec04c
Base64:
6I2j