C:
char c = '\u5895';
printf("%c\n", c); // Output: 墕
JavaScript:
const char = '\u5895';
console.log(char); // Output: 墕
Java:
char c = '\u5895';
System.out.println(c); // Output: 墕
JSON:
{"text": "\u5895"} // Value: 墕
Python:
char = '\u5895'
print(char) # Output: 墕
Perl:
my $char = "\x{5895}";
print $char; # Output: 墕
PHP:
$char = "\x{5895}";
echo $char; // Output: 墕
Ruby:
char = "\u{5895}"
puts char # Output: 墕
Rust:
let c = '\u{5895}';
println!("{}", c); // Output: 墕
Go:
char := '\u5895'
fmt.Printf("%c\n", char) // Output: 墕
CSS:
/* CSS content property */
.element::before {
content: "\005895"; /* 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=%E5%A2%95
MD5:
05f6afff7816bc6c6fe0095414dc904e
SHA1:
de431d6db878e7660cf5d990434832286d322795
Base64:
5aKV