C:
char c = '\u7821';
printf("%c\n", c); // Output: 砡
JavaScript:
const char = '\u7821';
console.log(char); // Output: 砡
Java:
char c = '\u7821';
System.out.println(c); // Output: 砡
JSON:
{"text": "\u7821"} // Value: 砡
Python:
char = '\u7821'
print(char) # Output: 砡
Perl:
my $char = "\x{7821}";
print $char; # Output: 砡
PHP:
$char = "\x{7821}";
echo $char; // Output: 砡
Ruby:
char = "\u{7821}"
puts char # Output: 砡
Rust:
let c = '\u{7821}';
println!("{}", c); // Output: 砡
Go:
char := '\u7821'
fmt.Printf("%c\n", char) // Output: 砡
CSS:
/* CSS content property */
.element::before {
content: "\007821"; /* 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%A1
MD5:
73eac7420720c2668e86b2e0ee514d96
SHA1:
4eecffd84bbaf91cffc10819e727f0c79637cee1
Base64:
56Ch