Unicode Finder

"≩" U+2269(GREATER-THAN BUT NOT EQUAL TO)

U+2269
Block Name
Mathematical Operators
Name
GREATER-THAN BUT NOT EQUAL TO

Programming

C
\u2269
JavaScript
\u2269
Java
\u2269
Json
\u2269
Python
\u2269
Perl
\x{2269}
PHP
\x{2269}
Ruby
\u{2269}
Rust
\u{2269}
Go
\u2269

Web

CSS
\002269
HtmlDecimal
≩
HtmlHexadecimal
≩
Url
%E2%89%A9

Code

MD5
b030ae50272e82c66b2ae1a2feecf3e8
Sha1
2edc025200ae513a73faa9c0f9ba87b95f331c18
Base64
4omp

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2269';
console.log(char);  // Output: ≩

Java:

char c = '\u2269';
System.out.println(c);  // Output: ≩

JSON:

{"text": "\u2269"}  // Value: ≩

Python:

char = '\u2269'
print(char)  # Output: ≩

Perl:

my $char = "\x{2269}";
print $char;  # Output: ≩

PHP:

$char = "\x{2269}";
echo $char;  // Output: ≩

Ruby:

char = "\u{2269}"
puts char  # Output: ≩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002269";  /* Display: ≩ */
}

HTML Decimal:

<p>HTML decimal: &#8809;</p>  <!-- Display: ≩ -->

HTML Hexadecimal:

<p>HTML hex: &#x2269;</p>  <!-- Display: ≩ -->

URL Encoding:

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

Encodings

MD5:

b030ae50272e82c66b2ae1a2feecf3e8

SHA1:

2edc025200ae513a73faa9c0f9ba87b95f331c18

Base64:

4omp