C:
char c = '\u5880';
printf("%c\n", c); // Output: 墀
JavaScript:
const char = '\u5880';
console.log(char); // Output: 墀
Java:
char c = '\u5880';
System.out.println(c); // Output: 墀
JSON:
{"text": "\u5880"} // Value: 墀
Python:
char = '\u5880'
print(char) # Output: 墀
Perl:
my $char = "\x{5880}";
print $char; # Output: 墀
PHP:
$char = "\x{5880}";
echo $char; // Output: 墀
Ruby:
char = "\u{5880}"
puts char # Output: 墀
Rust:
let c = '\u{5880}';
println!("{}", c); // Output: 墀
Go:
char := '\u5880'
fmt.Printf("%c\n", char) // Output: 墀
CSS:
/* CSS content property */
.element::before {
content: "\005880"; /* 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%A2%80
MD5:
bb925aa10bc67945e31f4f466b99bebc
SHA1:
ea981942f68f4448599eb90da179f3fd977a0e36
Base64:
5aKA