C:
char c = '\u6345';
printf("%c\n", c); // Output: 捅
JavaScript:
const char = '\u6345';
console.log(char); // Output: 捅
Java:
char c = '\u6345';
System.out.println(c); // Output: 捅
JSON:
{"text": "\u6345"} // Value: 捅
Python:
char = '\u6345'
print(char) # Output: 捅
Perl:
my $char = "\x{6345}";
print $char; # Output: 捅
PHP:
$char = "\x{6345}";
echo $char; // Output: 捅
Ruby:
char = "\u{6345}"
puts char # Output: 捅
Rust:
let c = '\u{6345}';
println!("{}", c); // Output: 捅
Go:
char := '\u6345'
fmt.Printf("%c\n", char) // Output: 捅
CSS:
/* CSS content property */
.element::before {
content: "\006345"; /* 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%85
MD5:
ebe9da47667fe215b22ec258b63dc7cb
SHA1:
eeeeb24e2715f3e52e692247a1ec46c685575cf8
Base64:
5o2F