C:
char c = '\u5898';
printf("%c\n", c); // Output: 墘
JavaScript:
const char = '\u5898';
console.log(char); // Output: 墘
Java:
char c = '\u5898';
System.out.println(c); // Output: 墘
JSON:
{"text": "\u5898"} // Value: 墘
Python:
char = '\u5898'
print(char) # Output: 墘
Perl:
my $char = "\x{5898}";
print $char; # Output: 墘
PHP:
$char = "\x{5898}";
echo $char; // Output: 墘
Ruby:
char = "\u{5898}"
puts char # Output: 墘
Rust:
let c = '\u{5898}';
println!("{}", c); // Output: 墘
Go:
char := '\u5898'
fmt.Printf("%c\n", char) // Output: 墘
CSS:
/* CSS content property */
.element::before {
content: "\005898"; /* 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%98
MD5:
f29c6e188c6e6801b4833414c739681b
SHA1:
11202953a1a1920ab2e770365b98829cce9a2b50
Base64:
5aKY