C:
char c = '\u7800';
printf("%c\n", c); // Output: 砀
JavaScript:
const char = '\u7800';
console.log(char); // Output: 砀
Java:
char c = '\u7800';
System.out.println(c); // Output: 砀
JSON:
{"text": "\u7800"} // Value: 砀
Python:
char = '\u7800'
print(char) # Output: 砀
Perl:
my $char = "\x{7800}";
print $char; # Output: 砀
PHP:
$char = "\x{7800}";
echo $char; // Output: 砀
Ruby:
char = "\u{7800}"
puts char # Output: 砀
Rust:
let c = '\u{7800}';
println!("{}", c); // Output: 砀
Go:
char := '\u7800'
fmt.Printf("%c\n", char) // Output: 砀
CSS:
/* CSS content property */
.element::before {
content: "\007800"; /* 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=%E7%A0%80
MD5:
db7b15004636c95ee6407786571ec3e4
SHA1:
089ee590723b5171fdf6157e21dc34dfedcc5de2
Base64:
56CA