Unicode Finder

"⋞" U+22DE(EQUAL TO OR PRECEDES)

U+22DE
Όνομα Μπλοκ
Mathematical Operators
Όνομα
EQUAL TO OR PRECEDES

Programming

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

Web

CSS
\0022DE
HtmlDecimal
⋞
HtmlHexadecimal
⋞
Url
%E2%8B%9E

Code

MD5
a5eb1aae9e7168d3b4c6ae2a3e80d893
Sha1
4760ad99bbbe4dd25785bec6021d59b8a761236c
Base64
4oue

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

Programming Languages

C:

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

JavaScript:

const char = '\u22DE';
console.log(char);  // Output: ⋞

Java:

char c = '\u22DE';
System.out.println(c);  // Output: ⋞

JSON:

{"text": "\u22DE"}  // Value: ⋞

Python:

char = '\u22DE'
print(char)  # Output: ⋞

Perl:

my $char = "\x{22DE}";
print $char;  # Output: ⋞

PHP:

$char = "\x{22DE}";
echo $char;  // Output: ⋞

Ruby:

char = "\u{22DE}"
puts char  # Output: ⋞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8926;</p>  <!-- Display: ⋞ -->

HTML Hexadecimal:

<p>HTML hex: &#x22DE;</p>  <!-- Display: ⋞ -->

URL Encoding:

// ⋞ URL encoding
https://unicodefinder.com/search.php?query=%E2%8B%9E

Encodings

MD5:

a5eb1aae9e7168d3b4c6ae2a3e80d893

SHA1:

4760ad99bbbe4dd25785bec6021d59b8a761236c

Base64:

4oue