C:
char c = '\u5812';
printf("%c\n", c); // Output: 堒
JavaScript:
const char = '\u5812';
console.log(char); // Output: 堒
Java:
char c = '\u5812';
System.out.println(c); // Output: 堒
JSON:
{"text": "\u5812"} // Value: 堒
Python:
char = '\u5812'
print(char) # Output: 堒
Perl:
my $char = "\x{5812}";
print $char; # Output: 堒
PHP:
$char = "\x{5812}";
echo $char; // Output: 堒
Ruby:
char = "\u{5812}"
puts char # Output: 堒
Rust:
let c = '\u{5812}';
println!("{}", c); // Output: 堒
Go:
char := '\u5812'
fmt.Printf("%c\n", char) // Output: 堒
CSS:
/* CSS content property */
.element::before {
content: "\005812"; /* 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%A0%92
MD5:
d56580fc982b25c09709c87f6f270642
SHA1:
f2812573d4ccb7777a8ddea34bf9cc65d31f811b
Base64:
5aCS