Unicode Finder

"∃" U+2203(THERE EXISTS)

U+2203
Назва Блоку
Mathematical Operators
Назва
THERE EXISTS

Programming

C
\u2203
JavaScript
\u2203
Java
\u2203
Json
\u2203
Python
\u2203
Perl
\x{2203}
PHP
\x{2203}
Ruby
\u{2203}
Rust
\u{2203}
Go
\u2203

Web

CSS
\002203
HtmlDecimal
∃
HtmlHexadecimal
∃
Url
%E2%88%83

Code

MD5
2f2a73110c5fe740152c2f6d1d7c8b12
Sha1
24753f9e7e8cf170117bd96111da9fbbb221955e
Base64
4oiD

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u2203';
console.log(char);  // Output: ∃

Java:

char c = '\u2203';
System.out.println(c);  // Output: ∃

JSON:

{"text": "\u2203"}  // Value: ∃

Python:

char = '\u2203'
print(char)  # Output: ∃

Perl:

my $char = "\x{2203}";
print $char;  # Output: ∃

PHP:

$char = "\x{2203}";
echo $char;  // Output: ∃

Ruby:

char = "\u{2203}"
puts char  # Output: ∃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002203";  /* Display: ∃ */
}

HTML Decimal:

<p>HTML decimal: &#8707;</p>  <!-- Display: ∃ -->

HTML Hexadecimal:

<p>HTML hex: &#x2203;</p>  <!-- Display: ∃ -->

URL Encoding:

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

Encodings

MD5:

2f2a73110c5fe740152c2f6d1d7c8b12

SHA1:

24753f9e7e8cf170117bd96111da9fbbb221955e

Base64:

4oiD