Unicode Finder

"⋭" U+22ED(DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL)

U+22ED
Όνομα Μπλοκ
Mathematical Operators
Όνομα
DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL

Programming

C
\u22ED
JavaScript
\u22ED
Java
\u22ED
Json
\u22ED
Python
\u22ED
Perl
\x{22ED}
PHP
\x{22ED}
Ruby
\u{22ED}
Rust
\u{22ED}
Go
\u22ED

Web

CSS
\0022ED
HtmlDecimal
⋭
HtmlHexadecimal
⋭
Url
%E2%8B%AD

Code

MD5
93d825d5a29668ccfa470c43e6eea6f9
Sha1
b546fe5ad6f3a33cfddd7fe63ed4d26e046a8a6b
Base64
4out

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u22ED';
console.log(char);  // Output: ⋭

Java:

char c = '\u22ED';
System.out.println(c);  // Output: ⋭

JSON:

{"text": "\u22ED"}  // Value: ⋭

Python:

char = '\u22ED'
print(char)  # Output: ⋭

Perl:

my $char = "\x{22ED}";
print $char;  # Output: ⋭

PHP:

$char = "\x{22ED}";
echo $char;  // Output: ⋭

Ruby:

char = "\u{22ED}"
puts char  # Output: ⋭

Rust:

let c = '\u{22ED}';
println!("{}", c);  // Output: ⋭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0022ED";  /* Display: ⋭ */
}

HTML Decimal:

<p>HTML decimal: &#8941;</p>  <!-- Display: ⋭ -->

HTML Hexadecimal:

<p>HTML hex: &#x22ED;</p>  <!-- Display: ⋭ -->

URL Encoding:

// ⋭ URL encoding
https://unicodefinder.com/search.php?query=%E2%8B%AD

Encodings

MD5:

93d825d5a29668ccfa470c43e6eea6f9

SHA1:

b546fe5ad6f3a33cfddd7fe63ed4d26e046a8a6b

Base64:

4out