C:
char c = '\u7817';
printf("%c\n", c); // Output: 砗
JavaScript:
const char = '\u7817';
console.log(char); // Output: 砗
Java:
char c = '\u7817';
System.out.println(c); // Output: 砗
JSON:
{"text": "\u7817"} // Value: 砗
Python:
char = '\u7817'
print(char) # Output: 砗
Perl:
my $char = "\x{7817}";
print $char; # Output: 砗
PHP:
$char = "\x{7817}";
echo $char; // Output: 砗
Ruby:
char = "\u{7817}"
puts char # Output: 砗
Rust:
let c = '\u{7817}';
println!("{}", c); // Output: 砗
Go:
char := '\u7817'
fmt.Printf("%c\n", char) // Output: 砗
CSS:
/* CSS content property */
.element::before {
content: "\007817"; /* 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%97
MD5:
21a4843aea29bcb8cecf50d477699f05
SHA1:
4efddd634cd7b8c391a1e32a909c35128944ea86
Base64:
56CX