C:
char c = '\u7823';
printf("%c\n", c); // Output: 砣
JavaScript:
const char = '\u7823';
console.log(char); // Output: 砣
Java:
char c = '\u7823';
System.out.println(c); // Output: 砣
JSON:
{"text": "\u7823"} // Value: 砣
Python:
char = '\u7823'
print(char) # Output: 砣
Perl:
my $char = "\x{7823}";
print $char; # Output: 砣
PHP:
$char = "\x{7823}";
echo $char; // Output: 砣
Ruby:
char = "\u{7823}"
puts char # Output: 砣
Rust:
let c = '\u{7823}';
println!("{}", c); // Output: 砣
Go:
char := '\u7823'
fmt.Printf("%c\n", char) // Output: 砣
CSS:
/* CSS content property */
.element::before {
content: "\007823"; /* 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%A3
MD5:
2c90bc69779c566416e44a0f7ad09a86
SHA1:
26e3e20ed401948ed0bda3e5b87e969f06c2f992
Base64:
56Cj