C:
char c = '\u6309';
printf("%c\n", c); // Output: 按
JavaScript:
const char = '\u6309';
console.log(char); // Output: 按
Java:
char c = '\u6309';
System.out.println(c); // Output: 按
JSON:
{"text": "\u6309"} // Value: 按
Python:
char = '\u6309'
print(char) # Output: 按
Perl:
my $char = "\x{6309}";
print $char; # Output: 按
PHP:
$char = "\x{6309}";
echo $char; // Output: 按
Ruby:
char = "\u{6309}"
puts char # Output: 按
Rust:
let c = '\u{6309}';
println!("{}", c); // Output: 按
Go:
char := '\u6309'
fmt.Printf("%c\n", char) // Output: 按
CSS:
/* CSS content property */
.element::before {
content: "\006309"; /* 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%8C%89
MD5:
39bed2b1037ffd217472355a18ef63c9
SHA1:
fb2ea9e2dfbf5bcb2d50ea905e1320f2051b8b61
Base64:
5oyJ