C:
char c = '\u7803';
printf("%c\n", c); // Output: 砃
JavaScript:
const char = '\u7803';
console.log(char); // Output: 砃
Java:
char c = '\u7803';
System.out.println(c); // Output: 砃
JSON:
{"text": "\u7803"} // Value: 砃
Python:
char = '\u7803'
print(char) # Output: 砃
Perl:
my $char = "\x{7803}";
print $char; # Output: 砃
PHP:
$char = "\x{7803}";
echo $char; // Output: 砃
Ruby:
char = "\u{7803}"
puts char # Output: 砃
Rust:
let c = '\u{7803}';
println!("{}", c); // Output: 砃
Go:
char := '\u7803'
fmt.Printf("%c\n", char) // Output: 砃
CSS:
/* CSS content property */
.element::before {
content: "\007803"; /* 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%83
MD5:
f77295bad4e3933aa8c175b78f90eed9
SHA1:
dcfec774b9787ab3d23e68e6050c934ebc016dae
Base64:
56CD