C:
char c = '\u6487';
printf("%c\n", c); // Output: 撇
JavaScript:
const char = '\u6487';
console.log(char); // Output: 撇
Java:
char c = '\u6487';
System.out.println(c); // Output: 撇
JSON:
{"text": "\u6487"} // Value: 撇
Python:
char = '\u6487'
print(char) # Output: 撇
Perl:
my $char = "\x{6487}";
print $char; # Output: 撇
PHP:
$char = "\x{6487}";
echo $char; // Output: 撇
Ruby:
char = "\u{6487}"
puts char # Output: 撇
Rust:
let c = '\u{6487}';
println!("{}", c); // Output: 撇
Go:
char := '\u6487'
fmt.Printf("%c\n", char) // Output: 撇
CSS:
/* CSS content property */
.element::before {
content: "\006487"; /* 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%87
MD5:
ee0e87d82046d8e7de179d8b654deff2
SHA1:
0b4cb1b1e55cfb0d06aaf5bfacea0c8accbdde0e
Base64:
5pKH