C:
char c = '\u7822';
printf("%c\n", c); // Output: 砢
JavaScript:
const char = '\u7822';
console.log(char); // Output: 砢
Java:
char c = '\u7822';
System.out.println(c); // Output: 砢
JSON:
{"text": "\u7822"} // Value: 砢
Python:
char = '\u7822'
print(char) # Output: 砢
Perl:
my $char = "\x{7822}";
print $char; # Output: 砢
PHP:
$char = "\x{7822}";
echo $char; // Output: 砢
Ruby:
char = "\u{7822}"
puts char # Output: 砢
Rust:
let c = '\u{7822}';
println!("{}", c); // Output: 砢
Go:
char := '\u7822'
fmt.Printf("%c\n", char) // Output: 砢
CSS:
/* CSS content property */
.element::before {
content: "\007822"; /* 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%A2
MD5:
0f7dc1b481c467256b64df8d7808387c
SHA1:
0560fdb0de6a4d46bd2a4c6d56f0c5bc9265f7dc
Base64:
56Ci