Unicode Finder

"⻂" U+2EC2(CJK RADICAL CLOTHES)

U+2EC2
Block Name
CJK Radicals Supplement
Name
CJK RADICAL CLOTHES

Programming

C
\u2EC2
JavaScript
\u2EC2
Java
\u2EC2
Json
\u2EC2
Python
\u2EC2
Perl
\x{2EC2}
PHP
\x{2EC2}
Ruby
\u{2EC2}
Rust
\u{2EC2}
Go
\u2EC2

Web

CSS
\002EC2
HtmlDecimal
⻂
HtmlHexadecimal
⻂
Url
%E2%BB%82

Code

MD5
4d39c4698fbc0ac474ed67c113c6d715
Sha1
bcddc09d94f0b0d61969f5b5cd8a01a7b2a62792
Base64
4ruC

Usage Examples

Programming Languages

C:

char c = '\u2EC2';
printf("%c\n", c);  // Output: ⻂

JavaScript:

const char = '\u2EC2';
console.log(char);  // Output: ⻂

Java:

char c = '\u2EC2';
System.out.println(c);  // Output: ⻂

JSON:

{"text": "\u2EC2"}  // Value: ⻂

Python:

char = '\u2EC2'
print(char)  # Output: ⻂

Perl:

my $char = "\x{2EC2}";
print $char;  # Output: ⻂

PHP:

$char = "\x{2EC2}";
echo $char;  // Output: ⻂

Ruby:

char = "\u{2EC2}"
puts char  # Output: ⻂

Rust:

let c = '\u{2EC2}';
println!("{}", c);  // Output: ⻂

Go:

char := '\u2EC2'
fmt.Printf("%c\n", char)  // Output: ⻂

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002EC2";  /* Display: ⻂ */
}

HTML Decimal:

<p>HTML decimal: &#11970;</p>  <!-- Display: ⻂ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EC2;</p>  <!-- Display: ⻂ -->

URL Encoding:

// ⻂ URL encoding
https://unicodefinder.com/search.php?query=%E2%BB%82

Encodings

MD5:

4d39c4698fbc0ac474ed67c113c6d715

SHA1:

bcddc09d94f0b0d61969f5b5cd8a01a7b2a62792

Base64:

4ruC