C:
char c = '\u7808';
printf("%c\n", c); // Output: 砈
JavaScript:
const char = '\u7808';
console.log(char); // Output: 砈
Java:
char c = '\u7808';
System.out.println(c); // Output: 砈
JSON:
{"text": "\u7808"} // Value: 砈
Python:
char = '\u7808'
print(char) # Output: 砈
Perl:
my $char = "\x{7808}";
print $char; # Output: 砈
PHP:
$char = "\x{7808}";
echo $char; // Output: 砈
Ruby:
char = "\u{7808}"
puts char # Output: 砈
Rust:
let c = '\u{7808}';
println!("{}", c); // Output: 砈
Go:
char := '\u7808'
fmt.Printf("%c\n", char) // Output: 砈
CSS:
/* CSS content property */
.element::before {
content: "\007808"; /* 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%88
MD5:
f73434ca87682481de900df88d805802
SHA1:
adc3a021608c968cbac8cffbb2484232dcf362c7
Base64:
56CI