C:
char c = '\u589F';
printf("%c\n", c); // Output: 墟
JavaScript:
const char = '\u589F';
console.log(char); // Output: 墟
Java:
char c = '\u589F';
System.out.println(c); // Output: 墟
JSON:
{"text": "\u589F"} // Value: 墟
Python:
char = '\u589F'
print(char) # Output: 墟
Perl:
my $char = "\x{589F}";
print $char; # Output: 墟
PHP:
$char = "\x{589F}";
echo $char; // Output: 墟
Ruby:
char = "\u{589F}"
puts char # Output: 墟
Rust:
let c = '\u{589F}';
println!("{}", c); // Output: 墟
Go:
char := '\u589F'
fmt.Printf("%c\n", char) // Output: 墟
CSS:
/* CSS content property */
.element::before {
content: "\00589F"; /* 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%9F
MD5:
6d553eb39b6203466dca65267bfbfee4
SHA1:
70f125a7a57045da4f8c1b77639630ef2cf6d6dc
Base64:
5aKf