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