C:
char c = '\u5837';
printf("%c\n", c); // Output: 堷
JavaScript:
const char = '\u5837';
console.log(char); // Output: 堷
Java:
char c = '\u5837';
System.out.println(c); // Output: 堷
JSON:
{"text": "\u5837"} // Value: 堷
Python:
char = '\u5837'
print(char) # Output: 堷
Perl:
my $char = "\x{5837}";
print $char; # Output: 堷
PHP:
$char = "\x{5837}";
echo $char; // Output: 堷
Ruby:
char = "\u{5837}"
puts char # Output: 堷
Rust:
let c = '\u{5837}';
println!("{}", c); // Output: 堷
Go:
char := '\u5837'
fmt.Printf("%c\n", char) // Output: 堷
CSS:
/* CSS content property */
.element::before {
content: "\005837"; /* 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%B7
MD5:
02f6e1af63b83fda6ab1deb94e0d60b9
SHA1:
c611948b39f2c1a51fe267e14bd22b1469229858
Base64:
5aC3