C:
char c = '\u5753';
printf("%c\n", c); // Output: 坓
JavaScript:
const char = '\u5753';
console.log(char); // Output: 坓
Java:
char c = '\u5753';
System.out.println(c); // Output: 坓
JSON:
{"text": "\u5753"} // Value: 坓
Python:
char = '\u5753'
print(char) # Output: 坓
Perl:
my $char = "\x{5753}";
print $char; # Output: 坓
PHP:
$char = "\x{5753}";
echo $char; // Output: 坓
Ruby:
char = "\u{5753}"
puts char # Output: 坓
Rust:
let c = '\u{5753}';
println!("{}", c); // Output: 坓
Go:
char := '\u5753'
fmt.Printf("%c\n", char) // Output: 坓
CSS:
/* CSS content property */
.element::before {
content: "\005753"; /* 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%93
MD5:
9ed73aa8a46bde51116eb1d260ca4f1b
SHA1:
6ca6bacaa530bd4aa0951aa26ff5d166e9c024d7
Base64:
5Z2T