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