C:
char c = '\u7A2C';
printf("%c\n", c); // Output: 稬
JavaScript:
const char = '\u7A2C';
console.log(char); // Output: 稬
Java:
char c = '\u7A2C';
System.out.println(c); // Output: 稬
JSON:
{"text": "\u7A2C"} // Value: 稬
Python:
char = '\u7A2C'
print(char) # Output: 稬
Perl:
my $char = "\x{7A2C}";
print $char; # Output: 稬
PHP:
$char = "\x{7A2C}";
echo $char; // Output: 稬
Ruby:
char = "\u{7A2C}"
puts char # Output: 稬
Rust:
let c = '\u{7A2C}';
println!("{}", c); // Output: 稬
Go:
char := '\u7A2C'
fmt.Printf("%c\n", char) // Output: 稬
CSS:
/* CSS content property */
.element::before {
content: "\007A2C"; /* 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%A8%AC
MD5:
8c1d78715290b3a4893518ff579b43e4
SHA1:
df51f2e722d63469e4657e6fc56d7e02c323b0a3
Base64:
56is