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