C:
char c = '\u6493';
printf("%c\n", c); // Output: 撓
JavaScript:
const char = '\u6493';
console.log(char); // Output: 撓
Java:
char c = '\u6493';
System.out.println(c); // Output: 撓
JSON:
{"text": "\u6493"} // Value: 撓
Python:
char = '\u6493'
print(char) # Output: 撓
Perl:
my $char = "\x{6493}";
print $char; # Output: 撓
PHP:
$char = "\x{6493}";
echo $char; // Output: 撓
Ruby:
char = "\u{6493}"
puts char # Output: 撓
Rust:
let c = '\u{6493}';
println!("{}", c); // Output: 撓
Go:
char := '\u6493'
fmt.Printf("%c\n", char) // Output: 撓
CSS:
/* CSS content property */
.element::before {
content: "\006493"; /* 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%92%93
MD5:
23b230a1b36a17ccda1dea148bdb578d
SHA1:
644fad97fcdae96fb7e92c1c94502f9c9d76f2bd
Base64:
5pKT