C:
char c = '\u6343';
printf("%c\n", c); // Output: 捃
JavaScript:
const char = '\u6343';
console.log(char); // Output: 捃
Java:
char c = '\u6343';
System.out.println(c); // Output: 捃
JSON:
{"text": "\u6343"} // Value: 捃
Python:
char = '\u6343'
print(char) # Output: 捃
Perl:
my $char = "\x{6343}";
print $char; # Output: 捃
PHP:
$char = "\x{6343}";
echo $char; // Output: 捃
Ruby:
char = "\u{6343}"
puts char # Output: 捃
Rust:
let c = '\u{6343}';
println!("{}", c); // Output: 捃
Go:
char := '\u6343'
fmt.Printf("%c\n", char) // Output: 捃
CSS:
/* CSS content property */
.element::before {
content: "\006343"; /* 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%8D%83
MD5:
073cbdbee4ff8bd6864128d2acf426a2
SHA1:
5d6d60df6a8aa89162ba6935b6e622e8e7baf973
Base64:
5o2D