Unicode Finder

"⻞" U+2EDE(CJK RADICAL EAT TWO)

U+2EDE
Block Name
CJK Radicals Supplement
Name
CJK RADICAL EAT TWO

Programming

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

Web

CSS
\002EDE
HtmlDecimal
⻞
HtmlHexadecimal
⻞
Url
%E2%BB%9E

Code

MD5
eed3e133a038a0d287eed117d44e77c5
Sha1
58435262a201ed952b035c6f9d9ed2e3ac3beac1
Base64
4rue

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EDE';
console.log(char);  // Output: ⻞

Java:

char c = '\u2EDE';
System.out.println(c);  // Output: ⻞

JSON:

{"text": "\u2EDE"}  // Value: ⻞

Python:

char = '\u2EDE'
print(char)  # Output: ⻞

Perl:

my $char = "\x{2EDE}";
print $char;  # Output: ⻞

PHP:

$char = "\x{2EDE}";
echo $char;  // Output: ⻞

Ruby:

char = "\u{2EDE}"
puts char  # Output: ⻞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11998;</p>  <!-- Display: ⻞ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EDE;</p>  <!-- Display: ⻞ -->

URL Encoding:

// ⻞ URL encoding
https://unicodefinder.com/search.php?query=%E2%BB%9E

Encodings

MD5:

eed3e133a038a0d287eed117d44e77c5

SHA1:

58435262a201ed952b035c6f9d9ed2e3ac3beac1

Base64:

4rue