C:
char c = '\u5808';
printf("%c\n", c); // Output: 堈
JavaScript:
const char = '\u5808';
console.log(char); // Output: 堈
Java:
char c = '\u5808';
System.out.println(c); // Output: 堈
JSON:
{"text": "\u5808"} // Value: 堈
Python:
char = '\u5808'
print(char) # Output: 堈
Perl:
my $char = "\x{5808}";
print $char; # Output: 堈
PHP:
$char = "\x{5808}";
echo $char; // Output: 堈
Ruby:
char = "\u{5808}"
puts char # Output: 堈
Rust:
let c = '\u{5808}';
println!("{}", c); // Output: 堈
Go:
char := '\u5808'
fmt.Printf("%c\n", char) // Output: 堈
CSS:
/* CSS content property */
.element::before {
content: "\005808"; /* 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%88
MD5:
34ffc8cd9aa2ac9264e5dc451df2eb10
SHA1:
ba3e15287e8d8f6781d3b3a05f38c9e8a13e6486
Base64:
5aCI