C:
char c = '\u5833';
printf("%c\n", c); // Output: 堳
JavaScript:
const char = '\u5833';
console.log(char); // Output: 堳
Java:
char c = '\u5833';
System.out.println(c); // Output: 堳
JSON:
{"text": "\u5833"} // Value: 堳
Python:
char = '\u5833'
print(char) # Output: 堳
Perl:
my $char = "\x{5833}";
print $char; # Output: 堳
PHP:
$char = "\x{5833}";
echo $char; // Output: 堳
Ruby:
char = "\u{5833}"
puts char # Output: 堳
Rust:
let c = '\u{5833}';
println!("{}", c); // Output: 堳
Go:
char := '\u5833'
fmt.Printf("%c\n", char) // Output: 堳
CSS:
/* CSS content property */
.element::before {
content: "\005833"; /* 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%B3
MD5:
ba2b960dad441ff3e5d570d17a4573f2
SHA1:
930b407ca494d81a16f5b7f7a0834660c8c4cc1e
Base64:
5aCz