C:
char c = '\u782A';
printf("%c\n", c); // Output: 砪
JavaScript:
const char = '\u782A';
console.log(char); // Output: 砪
Java:
char c = '\u782A';
System.out.println(c); // Output: 砪
JSON:
{"text": "\u782A"} // Value: 砪
Python:
char = '\u782A'
print(char) # Output: 砪
Perl:
my $char = "\x{782A}";
print $char; # Output: 砪
PHP:
$char = "\x{782A}";
echo $char; // Output: 砪
Ruby:
char = "\u{782A}"
puts char # Output: 砪
Rust:
let c = '\u{782A}';
println!("{}", c); // Output: 砪
Go:
char := '\u782A'
fmt.Printf("%c\n", char) // Output: 砪
CSS:
/* CSS content property */
.element::before {
content: "\00782A"; /* 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%AA
MD5:
9d421109fd5c95d95aab8d2f7716362c
SHA1:
3e24c1d7569a635fd01748c5cc0786316db64c34
Base64:
56Cq