C:
char c = '\u5824';
printf("%c\n", c); // Output: 堤
JavaScript:
const char = '\u5824';
console.log(char); // Output: 堤
Java:
char c = '\u5824';
System.out.println(c); // Output: 堤
JSON:
{"text": "\u5824"} // Value: 堤
Python:
char = '\u5824'
print(char) # Output: 堤
Perl:
my $char = "\x{5824}";
print $char; # Output: 堤
PHP:
$char = "\x{5824}";
echo $char; // Output: 堤
Ruby:
char = "\u{5824}"
puts char # Output: 堤
Rust:
let c = '\u{5824}';
println!("{}", c); // Output: 堤
Go:
char := '\u5824'
fmt.Printf("%c\n", char) // Output: 堤
CSS:
/* CSS content property */
.element::before {
content: "\005824"; /* 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%A4
MD5:
1128c5d6537815ef5a989abff92b47d0
SHA1:
b5a414f74f61278bdd0c031603b3c83dca01f854
Base64:
5aCk