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