C:
char c = '\u6495';
printf("%c\n", c); // Output: 撕
JavaScript:
const char = '\u6495';
console.log(char); // Output: 撕
Java:
char c = '\u6495';
System.out.println(c); // Output: 撕
JSON:
{"text": "\u6495"} // Value: 撕
Python:
char = '\u6495'
print(char) # Output: 撕
Perl:
my $char = "\x{6495}";
print $char; # Output: 撕
PHP:
$char = "\x{6495}";
echo $char; // Output: 撕
Ruby:
char = "\u{6495}"
puts char # Output: 撕
Rust:
let c = '\u{6495}';
println!("{}", c); // Output: 撕
Go:
char := '\u6495'
fmt.Printf("%c\n", char) // Output: 撕
CSS:
/* CSS content property */
.element::before {
content: "\006495"; /* 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%95
MD5:
dfec6c20cfc783ae54abcf3556b804bd
SHA1:
ca1d12f25fb6a2c4025bcd8df5fe17c662ce270a
Base64:
5pKV