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