C:
char c = '\u5893';
printf("%c\n", c); // Output: 墓
JavaScript:
const char = '\u5893';
console.log(char); // Output: 墓
Java:
char c = '\u5893';
System.out.println(c); // Output: 墓
JSON:
{"text": "\u5893"} // Value: 墓
Python:
char = '\u5893'
print(char) # Output: 墓
Perl:
my $char = "\x{5893}";
print $char; # Output: 墓
PHP:
$char = "\x{5893}";
echo $char; // Output: 墓
Ruby:
char = "\u{5893}"
puts char # Output: 墓
Rust:
let c = '\u{5893}';
println!("{}", c); // Output: 墓
Go:
char := '\u5893'
fmt.Printf("%c\n", char) // Output: 墓
CSS:
/* CSS content property */
.element::before {
content: "\005893"; /* 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%93
MD5:
10466328b84ee688910b73ca1427668c
SHA1:
d27252b64dcedbd352436139b4de7728e8b568e0
Base64:
5aKT