C:
char c = '\u7820';
printf("%c\n", c); // Output: 砠
JavaScript:
const char = '\u7820';
console.log(char); // Output: 砠
Java:
char c = '\u7820';
System.out.println(c); // Output: 砠
JSON:
{"text": "\u7820"} // Value: 砠
Python:
char = '\u7820'
print(char) # Output: 砠
Perl:
my $char = "\x{7820}";
print $char; # Output: 砠
PHP:
$char = "\x{7820}";
echo $char; // Output: 砠
Ruby:
char = "\u{7820}"
puts char # Output: 砠
Rust:
let c = '\u{7820}';
println!("{}", c); // Output: 砠
Go:
char := '\u7820'
fmt.Printf("%c\n", char) // Output: 砠
CSS:
/* CSS content property */
.element::before {
content: "\007820"; /* 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%A0
MD5:
61edde6ccdddfe45b4ee7962626b909a
SHA1:
2fffc33d2b0ae9c16624aa1ba9d958b270dcbf78
Base64:
56Cg