C:
char c = '\u5832';
printf("%c\n", c); // Output: 堲
JavaScript:
const char = '\u5832';
console.log(char); // Output: 堲
Java:
char c = '\u5832';
System.out.println(c); // Output: 堲
JSON:
{"text": "\u5832"} // Value: 堲
Python:
char = '\u5832'
print(char) # Output: 堲
Perl:
my $char = "\x{5832}";
print $char; # Output: 堲
PHP:
$char = "\x{5832}";
echo $char; // Output: 堲
Ruby:
char = "\u{5832}"
puts char # Output: 堲
Rust:
let c = '\u{5832}';
println!("{}", c); // Output: 堲
Go:
char := '\u5832'
fmt.Printf("%c\n", char) // Output: 堲
CSS:
/* CSS content property */
.element::before {
content: "\005832"; /* 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%B2
MD5:
c8e13f669739d207a58605e0f00c3c3b
SHA1:
2b11723f31f557518417ae914f1bbe4382edf65b
Base64:
5aCy