C:
char c = '\u5788';
printf("%c\n", c); // Output: 垈
JavaScript:
const char = '\u5788';
console.log(char); // Output: 垈
Java:
char c = '\u5788';
System.out.println(c); // Output: 垈
JSON:
{"text": "\u5788"} // Value: 垈
Python:
char = '\u5788'
print(char) # Output: 垈
Perl:
my $char = "\x{5788}";
print $char; # Output: 垈
PHP:
$char = "\x{5788}";
echo $char; // Output: 垈
Ruby:
char = "\u{5788}"
puts char # Output: 垈
Rust:
let c = '\u{5788}';
println!("{}", c); // Output: 垈
Go:
char := '\u5788'
fmt.Printf("%c\n", char) // Output: 垈
CSS:
/* CSS content property */
.element::before {
content: "\005788"; /* 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%9E%88
MD5:
7d0b219b9ec8606760f8d47b127dd918
SHA1:
4f29dcf753e55224abb29ba79158a9ab1236e972
Base64:
5Z6I