Unicode Finder

"≗" U+2257(RING EQUAL TO)

U+2257
Block Name
Mathematical Operators
Name
RING EQUAL TO

Programming

C
\u2257
JavaScript
\u2257
Java
\u2257
Json
\u2257
Python
\u2257
Perl
\x{2257}
PHP
\x{2257}
Ruby
\u{2257}
Rust
\u{2257}
Go
\u2257

Web

CSS
\002257
HtmlDecimal
≗
HtmlHexadecimal
≗
Url
%E2%89%97

Code

MD5
e1f19959f785b9e3149d052680001556
Sha1
7aa09230bda119e75c91371a01a4659035b34f8c
Base64
4omX

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2257';
console.log(char);  // Output: ≗

Java:

char c = '\u2257';
System.out.println(c);  // Output: ≗

JSON:

{"text": "\u2257"}  // Value: ≗

Python:

char = '\u2257'
print(char)  # Output: ≗

Perl:

my $char = "\x{2257}";
print $char;  # Output: ≗

PHP:

$char = "\x{2257}";
echo $char;  // Output: ≗

Ruby:

char = "\u{2257}"
puts char  # Output: ≗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002257";  /* Display: ≗ */
}

HTML Decimal:

<p>HTML decimal: &#8791;</p>  <!-- Display: ≗ -->

HTML Hexadecimal:

<p>HTML hex: &#x2257;</p>  <!-- Display: ≗ -->

URL Encoding:

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

Encodings

MD5:

e1f19959f785b9e3149d052680001556

SHA1:

7aa09230bda119e75c91371a01a4659035b34f8c

Base64:

4omX