C:
char c = '\u574E';
printf("%c\n", c); // Output: 坎
JavaScript:
const char = '\u574E';
console.log(char); // Output: 坎
Java:
char c = '\u574E';
System.out.println(c); // Output: 坎
JSON:
{"text": "\u574E"} // Value: 坎
Python:
char = '\u574E'
print(char) # Output: 坎
Perl:
my $char = "\x{574E}";
print $char; # Output: 坎
PHP:
$char = "\x{574E}";
echo $char; // Output: 坎
Ruby:
char = "\u{574E}"
puts char # Output: 坎
Rust:
let c = '\u{574E}';
println!("{}", c); // Output: 坎
Go:
char := '\u574E'
fmt.Printf("%c\n", char) // Output: 坎
CSS:
/* CSS content property */
.element::before {
content: "\00574E"; /* 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%9D%8E
MD5:
786b24c781530284e59c13766f678764
SHA1:
09a966c83b122b5a0bac36ce9f7fe3ef14d3b443
Base64:
5Z2O