C:
char c = '\u6353';
printf("%c\n", c); // Output: 捓
JavaScript:
const char = '\u6353';
console.log(char); // Output: 捓
Java:
char c = '\u6353';
System.out.println(c); // Output: 捓
JSON:
{"text": "\u6353"} // Value: 捓
Python:
char = '\u6353'
print(char) # Output: 捓
Perl:
my $char = "\x{6353}";
print $char; # Output: 捓
PHP:
$char = "\x{6353}";
echo $char; // Output: 捓
Ruby:
char = "\u{6353}"
puts char # Output: 捓
Rust:
let c = '\u{6353}';
println!("{}", c); // Output: 捓
Go:
char := '\u6353'
fmt.Printf("%c\n", char) // Output: 捓
CSS:
/* CSS content property */
.element::before {
content: "\006353"; /* 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=%E6%8D%93
MD5:
769683d89e6d0e3a6b515bc0ec389989
SHA1:
71900e6777081fd495ebbcecaa90f879f650d6db
Base64:
5o2T