C:
char c = '\u5754';
printf("%c\n", c); // Output: 坔
JavaScript:
const char = '\u5754';
console.log(char); // Output: 坔
Java:
char c = '\u5754';
System.out.println(c); // Output: 坔
JSON:
{"text": "\u5754"} // Value: 坔
Python:
char = '\u5754'
print(char) # Output: 坔
Perl:
my $char = "\x{5754}";
print $char; # Output: 坔
PHP:
$char = "\x{5754}";
echo $char; // Output: 坔
Ruby:
char = "\u{5754}"
puts char # Output: 坔
Rust:
let c = '\u{5754}';
println!("{}", c); // Output: 坔
Go:
char := '\u5754'
fmt.Printf("%c\n", char) // Output: 坔
CSS:
/* CSS content property */
.element::before {
content: "\005754"; /* 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%94
MD5:
d856a7830b8a3e3fa7ba54f0300f156c
SHA1:
372ccf7fdb46fe14806386d64a3b1ca8145ab907
Base64:
5Z2U