Unicode Finder

"∞" U+221E(INFINITY)

U+221E
Blockname
Mathematical Operators
Name
INFINITY

Programming

C
\u221E
JavaScript
\u221E
Java
\u221E
Json
\u221E
Python
\u221E
Perl
\x{221E}
PHP
\x{221E}
Ruby
\u{221E}
Rust
\u{221E}
Go
\u221E

Web

CSS
\00221E
HtmlDecimal
∞
HtmlHexadecimal
∞
Url
%E2%88%9E

Code

MD5
b63148f54c8e3d3cfd0603baae351208
Sha1
38f64525a956ba808409ef7c2efb5d2228adb775
Base64
4oie

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u221E';
console.log(char);  // Output: ∞

Java:

char c = '\u221E';
System.out.println(c);  // Output: ∞

JSON:

{"text": "\u221E"}  // Value: ∞

Python:

char = '\u221E'
print(char)  # Output: ∞

Perl:

my $char = "\x{221E}";
print $char;  # Output: ∞

PHP:

$char = "\x{221E}";
echo $char;  // Output: ∞

Ruby:

char = "\u{221E}"
puts char  # Output: ∞

Rust:

let c = '\u{221E}';
println!("{}", c);  // Output: ∞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00221E";  /* Display: ∞ */
}

HTML Decimal:

<p>HTML decimal: &#8734;</p>  <!-- Display: ∞ -->

HTML Hexadecimal:

<p>HTML hex: &#x221E;</p>  <!-- Display: ∞ -->

URL Encoding:

// ∞ URL encoding
https://unicodefinder.com/search.php?query=%E2%88%9E

Encodings

MD5:

b63148f54c8e3d3cfd0603baae351208

SHA1:

38f64525a956ba808409ef7c2efb5d2228adb775

Base64:

4oie