Unicode Finder

"⺿" U+2EBF(CJK RADICAL GRASS TWO)

⺿
U+2EBF
Block Name
CJK Radicals Supplement
Name
CJK RADICAL GRASS TWO

Programming

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

Web

CSS
\002EBF
HtmlDecimal
⺿
HtmlHexadecimal
⺿
Url
%E2%BA%BF

Code

MD5
94f3de5f3beb6077b13b4758a6e2f04a
Sha1
159d66f8481ae4df7a5e5efff2167e77d5b04de6
Base64
4rq/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EBF';
console.log(char);  // Output: ⺿

Java:

char c = '\u2EBF';
System.out.println(c);  // Output: ⺿

JSON:

{"text": "\u2EBF"}  // Value: ⺿

Python:

char = '\u2EBF'
print(char)  # Output: ⺿

Perl:

my $char = "\x{2EBF}";
print $char;  # Output: ⺿

PHP:

$char = "\x{2EBF}";
echo $char;  // Output: ⺿

Ruby:

char = "\u{2EBF}"
puts char  # Output: ⺿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11967;</p>  <!-- Display: ⺿ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EBF;</p>  <!-- Display: ⺿ -->

URL Encoding:

// ⺿ URL encoding
https://unicodefinder.com/search.php?query=%E2%BA%BF

Encodings

MD5:

94f3de5f3beb6077b13b4758a6e2f04a

SHA1:

159d66f8481ae4df7a5e5efff2167e77d5b04de6

Base64:

4rq/