Unicode Finder

"≄" U+2244(NOT ASYMPTOTICALLY EQUAL TO)

U+2244
Blockname
Mathematical Operators
Name
NOT ASYMPTOTICALLY EQUAL TO

Programming

C
\u2244
JavaScript
\u2244
Java
\u2244
Json
\u2244
Python
\u2244
Perl
\x{2244}
PHP
\x{2244}
Ruby
\u{2244}
Rust
\u{2244}
Go
\u2244

Web

CSS
\002244
HtmlDecimal
≄
HtmlHexadecimal
≄
Url
%E2%89%84

Code

MD5
a8c2059f5510f8cc4bf53230fb769187
Sha1
c278f9ccfa6c9269f41285279c1e97c653eea40d
Base64
4omE

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2244';
console.log(char);  // Output: ≄

Java:

char c = '\u2244';
System.out.println(c);  // Output: ≄

JSON:

{"text": "\u2244"}  // Value: ≄

Python:

char = '\u2244'
print(char)  # Output: ≄

Perl:

my $char = "\x{2244}";
print $char;  # Output: ≄

PHP:

$char = "\x{2244}";
echo $char;  // Output: ≄

Ruby:

char = "\u{2244}"
puts char  # Output: ≄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002244";  /* Display: ≄ */
}

HTML Decimal:

<p>HTML decimal: &#8772;</p>  <!-- Display: ≄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2244;</p>  <!-- Display: ≄ -->

URL Encoding:

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

Encodings

MD5:

a8c2059f5510f8cc4bf53230fb769187

SHA1:

c278f9ccfa6c9269f41285279c1e97c653eea40d

Base64:

4omE