C:
char c = '\u5EC9';
printf("%c\n", c); // Output: 廉
JavaScript:
const char = '\u5EC9';
console.log(char); // Output: 廉
Java:
char c = '\u5EC9';
System.out.println(c); // Output: 廉
JSON:
{"text": "\u5EC9"} // Value: 廉
Python:
char = '\u5EC9'
print(char) # Output: 廉
Perl:
my $char = "\x{5EC9}";
print $char; # Output: 廉
PHP:
$char = "\x{5EC9}";
echo $char; // Output: 廉
Ruby:
char = "\u{5EC9}"
puts char # Output: 廉
Rust:
let c = '\u{5EC9}';
println!("{}", c); // Output: 廉
Go:
char := '\u5EC9'
fmt.Printf("%c\n", char) // Output: 廉
CSS:
/* CSS content property */
.element::before {
content: "\005EC9"; /* 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%BB%89
MD5:
9982173a986b4ec5217941374e0355f1
SHA1:
67bc0f2b5c75690d6b197fa5ec8e2564baffd637
Base64:
5buJ