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