C:
char c = '\u6263';
printf("%c\n", c); // Output: 扣
JavaScript:
const char = '\u6263';
console.log(char); // Output: 扣
Java:
char c = '\u6263';
System.out.println(c); // Output: 扣
JSON:
{"text": "\u6263"} // Value: 扣
Python:
char = '\u6263'
print(char) # Output: 扣
Perl:
my $char = "\x{6263}";
print $char; # Output: 扣
PHP:
$char = "\x{6263}";
echo $char; // Output: 扣
Ruby:
char = "\u{6263}"
puts char # Output: 扣
Rust:
let c = '\u{6263}';
println!("{}", c); // Output: 扣
Go:
char := '\u6263'
fmt.Printf("%c\n", char) // Output: 扣
CSS:
/* CSS content property */
.element::before {
content: "\006263"; /* 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%89%A3
MD5:
aedc526ba0def508a89a5dd31b766976
SHA1:
1e5a8201d788650945ee7246e1270e9c8d92bdfa
Base64:
5omj