Unicode Finder

"≃" U+2243(ASYMPTOTICALLY EQUAL TO)

U+2243
Blockname
Mathematical Operators
Name
ASYMPTOTICALLY EQUAL TO

Programming

C
\u2243
JavaScript
\u2243
Java
\u2243
Json
\u2243
Python
\u2243
Perl
\x{2243}
PHP
\x{2243}
Ruby
\u{2243}
Rust
\u{2243}
Go
\u2243

Web

CSS
\002243
HtmlDecimal
≃
HtmlHexadecimal
≃
Url
%E2%89%83

Code

MD5
2b52e303b345213d84927b23e70ca1c0
Sha1
b88e1bba833cebdb2b4e0fc29d17513132f1424e
Base64
4omD

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2243';
console.log(char);  // Output: ≃

Java:

char c = '\u2243';
System.out.println(c);  // Output: ≃

JSON:

{"text": "\u2243"}  // Value: ≃

Python:

char = '\u2243'
print(char)  # Output: ≃

Perl:

my $char = "\x{2243}";
print $char;  # Output: ≃

PHP:

$char = "\x{2243}";
echo $char;  // Output: ≃

Ruby:

char = "\u{2243}"
puts char  # Output: ≃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002243";  /* Display: ≃ */
}

HTML Decimal:

<p>HTML decimal: &#8771;</p>  <!-- Display: ≃ -->

HTML Hexadecimal:

<p>HTML hex: &#x2243;</p>  <!-- Display: ≃ -->

URL Encoding:

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

Encodings

MD5:

2b52e303b345213d84927b23e70ca1c0

SHA1:

b88e1bba833cebdb2b4e0fc29d17513132f1424e

Base64:

4omD