Unicode Finder

"⺯" U+2EAF(CJK RADICAL SILK)

U+2EAF
Block Name
CJK Radicals Supplement
Name
CJK RADICAL SILK

Programming

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

Web

CSS
\002EAF
HtmlDecimal
⺯
HtmlHexadecimal
⺯
Url
%E2%BA%AF

Code

MD5
47b548328e2e1855f440d0cdb642bc17
Sha1
59906ba7b995363bfc07332070e5a43af528cc5f
Base64
4rqv

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EAF';
console.log(char);  // Output: ⺯

Java:

char c = '\u2EAF';
System.out.println(c);  // Output: ⺯

JSON:

{"text": "\u2EAF"}  // Value: ⺯

Python:

char = '\u2EAF'
print(char)  # Output: ⺯

Perl:

my $char = "\x{2EAF}";
print $char;  # Output: ⺯

PHP:

$char = "\x{2EAF}";
echo $char;  // Output: ⺯

Ruby:

char = "\u{2EAF}"
puts char  # Output: ⺯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11951;</p>  <!-- Display: ⺯ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EAF;</p>  <!-- Display: ⺯ -->

URL Encoding:

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

Encodings

MD5:

47b548328e2e1855f440d0cdb642bc17

SHA1:

59906ba7b995363bfc07332070e5a43af528cc5f

Base64:

4rqv