C:
char c = '\u6349';
printf("%c\n", c); // Output: 捉
JavaScript:
const char = '\u6349';
console.log(char); // Output: 捉
Java:
char c = '\u6349';
System.out.println(c); // Output: 捉
JSON:
{"text": "\u6349"} // Value: 捉
Python:
char = '\u6349'
print(char) # Output: 捉
Perl:
my $char = "\x{6349}";
print $char; # Output: 捉
PHP:
$char = "\x{6349}";
echo $char; // Output: 捉
Ruby:
char = "\u{6349}"
puts char # Output: 捉
Rust:
let c = '\u{6349}';
println!("{}", c); // Output: 捉
Go:
char := '\u6349'
fmt.Printf("%c\n", char) // Output: 捉
CSS:
/* CSS content property */
.element::before {
content: "\006349"; /* 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%89
MD5:
3a7ea533b5e8ab77afc250e521edec53
SHA1:
57c9f5ce96cd29bf6a11594d76b84ca5a8d960c9
Base64:
5o2J