C:
char c = '\u6293';
printf("%c\n", c); // Output: 抓
JavaScript:
const char = '\u6293';
console.log(char); // Output: 抓
Java:
char c = '\u6293';
System.out.println(c); // Output: 抓
JSON:
{"text": "\u6293"} // Value: 抓
Python:
char = '\u6293'
print(char) # Output: 抓
Perl:
my $char = "\x{6293}";
print $char; # Output: 抓
PHP:
$char = "\x{6293}";
echo $char; // Output: 抓
Ruby:
char = "\u{6293}"
puts char # Output: 抓
Rust:
let c = '\u{6293}';
println!("{}", c); // Output: 抓
Go:
char := '\u6293'
fmt.Printf("%c\n", char) // Output: 抓
CSS:
/* CSS content property */
.element::before {
content: "\006293"; /* 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%8A%93
MD5:
c7720115a95320c5c89bf06322de9329
SHA1:
21e65d70122b87bbd68af4e20577adc56e09f99c
Base64:
5oqT