Unicode Finder

"⻆" U+2EC6(CJK RADICAL SIMPLIFIED HORN)

U+2EC6
Block Name
CJK Radicals Supplement
Name
CJK RADICAL SIMPLIFIED HORN

Programming

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

Web

CSS
\002EC6
HtmlDecimal
⻆
HtmlHexadecimal
⻆
Url
%E2%BB%86

Code

MD5
04730d989488f83840ee742fb1ac24bf
Sha1
846812cd5ab1db3b56c99fbe33e5cf4075f363f9
Base64
4ruG

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EC6';
console.log(char);  // Output: ⻆

Java:

char c = '\u2EC6';
System.out.println(c);  // Output: ⻆

JSON:

{"text": "\u2EC6"}  // Value: ⻆

Python:

char = '\u2EC6'
print(char)  # Output: ⻆

Perl:

my $char = "\x{2EC6}";
print $char;  # Output: ⻆

PHP:

$char = "\x{2EC6}";
echo $char;  // Output: ⻆

Ruby:

char = "\u{2EC6}"
puts char  # Output: ⻆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11974;</p>  <!-- Display: ⻆ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EC6;</p>  <!-- Display: ⻆ -->

URL Encoding:

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

Encodings

MD5:

04730d989488f83840ee742fb1ac24bf

SHA1:

846812cd5ab1db3b56c99fbe33e5cf4075f363f9

Base64:

4ruG