C:
char c = '\u6372';
printf("%c\n", c); // Output: 捲
JavaScript:
const char = '\u6372';
console.log(char); // Output: 捲
Java:
char c = '\u6372';
System.out.println(c); // Output: 捲
JSON:
{"text": "\u6372"} // Value: 捲
Python:
char = '\u6372'
print(char) # Output: 捲
Perl:
my $char = "\x{6372}";
print $char; # Output: 捲
PHP:
$char = "\x{6372}";
echo $char; // Output: 捲
Ruby:
char = "\u{6372}"
puts char # Output: 捲
Rust:
let c = '\u{6372}';
println!("{}", c); // Output: 捲
Go:
char := '\u6372'
fmt.Printf("%c\n", char) // Output: 捲
CSS:
/* CSS content property */
.element::before {
content: "\006372"; /* 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%B2
MD5:
c9d7fe6c55a0fe422f8606bf19bd6bb9
SHA1:
48ee5f191eb05460ea75269034246bbbd161c6b2
Base64:
5o2y