C:
char c = '\u7805';
printf("%c\n", c); // Output: 砅
JavaScript:
const char = '\u7805';
console.log(char); // Output: 砅
Java:
char c = '\u7805';
System.out.println(c); // Output: 砅
JSON:
{"text": "\u7805"} // Value: 砅
Python:
char = '\u7805'
print(char) # Output: 砅
Perl:
my $char = "\x{7805}";
print $char; # Output: 砅
PHP:
$char = "\x{7805}";
echo $char; // Output: 砅
Ruby:
char = "\u{7805}"
puts char # Output: 砅
Rust:
let c = '\u{7805}';
println!("{}", c); // Output: 砅
Go:
char := '\u7805'
fmt.Printf("%c\n", char) // Output: 砅
CSS:
/* CSS content property */
.element::before {
content: "\007805"; /* 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%85
MD5:
1e081a7faf47589b5c5d7fa910490588
SHA1:
4caf4fedcd6302aece42e517223efbeac57a90fb
Base64:
56CF