C:
char c = '\u7807';
printf("%c\n", c); // Output: 砇
JavaScript:
const char = '\u7807';
console.log(char); // Output: 砇
Java:
char c = '\u7807';
System.out.println(c); // Output: 砇
JSON:
{"text": "\u7807"} // Value: 砇
Python:
char = '\u7807'
print(char) # Output: 砇
Perl:
my $char = "\x{7807}";
print $char; # Output: 砇
PHP:
$char = "\x{7807}";
echo $char; // Output: 砇
Ruby:
char = "\u{7807}"
puts char # Output: 砇
Rust:
let c = '\u{7807}';
println!("{}", c); // Output: 砇
Go:
char := '\u7807'
fmt.Printf("%c\n", char) // Output: 砇
CSS:
/* CSS content property */
.element::before {
content: "\007807"; /* 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%87
MD5:
f529dac3dab65cc6fbc217197e373392
SHA1:
2eecffd1675c12d0e60a1e924b4dc6d1246f3a27
Base64:
56CH