Unicode Finder

"≸" U+2278(NEITHER LESS-THAN NOR GREATER-THAN)

U+2278
Block Name
Mathematical Operators
Name
NEITHER LESS-THAN NOR GREATER-THAN

Programming

C
\u2278
JavaScript
\u2278
Java
\u2278
Json
\u2278
Python
\u2278
Perl
\x{2278}
PHP
\x{2278}
Ruby
\u{2278}
Rust
\u{2278}
Go
\u2278

Web

CSS
\002278
HtmlDecimal
≸
HtmlHexadecimal
≸
Url
%E2%89%B8

Code

MD5
d193767760eb032c2f33ac05d0f15a71
Sha1
1f76687808c993f2785eafce0ebf70b1ddf5373e
Base64
4om4

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2278';
console.log(char);  // Output: ≸

Java:

char c = '\u2278';
System.out.println(c);  // Output: ≸

JSON:

{"text": "\u2278"}  // Value: ≸

Python:

char = '\u2278'
print(char)  # Output: ≸

Perl:

my $char = "\x{2278}";
print $char;  # Output: ≸

PHP:

$char = "\x{2278}";
echo $char;  // Output: ≸

Ruby:

char = "\u{2278}"
puts char  # Output: ≸

Rust:

let c = '\u{2278}';
println!("{}", c);  // Output: ≸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002278";  /* Display: ≸ */
}

HTML Decimal:

<p>HTML decimal: &#8824;</p>  <!-- Display: ≸ -->

HTML Hexadecimal:

<p>HTML hex: &#x2278;</p>  <!-- Display: ≸ -->

URL Encoding:

// ≸ URL encoding
https://unicodefinder.com/search.php?query=%E2%89%B8

Encodings

MD5:

d193767760eb032c2f33ac05d0f15a71

SHA1:

1f76687808c993f2785eafce0ebf70b1ddf5373e

Base64:

4om4