C:
char c = '\u7824';
printf("%c\n", c); // Output: 砤
JavaScript:
const char = '\u7824';
console.log(char); // Output: 砤
Java:
char c = '\u7824';
System.out.println(c); // Output: 砤
JSON:
{"text": "\u7824"} // Value: 砤
Python:
char = '\u7824'
print(char) # Output: 砤
Perl:
my $char = "\x{7824}";
print $char; # Output: 砤
PHP:
$char = "\x{7824}";
echo $char; // Output: 砤
Ruby:
char = "\u{7824}"
puts char # Output: 砤
Rust:
let c = '\u{7824}';
println!("{}", c); // Output: 砤
Go:
char := '\u7824'
fmt.Printf("%c\n", char) // Output: 砤
CSS:
/* CSS content property */
.element::before {
content: "\007824"; /* 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%A4
MD5:
4be38866d83e4c5e897ca55a85173733
SHA1:
007f1b3b2f9afb809401d9474a598413d062fdc2
Base64:
56Ck