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