Unicode Finder

"∀" U+2200(FOR ALL)

U+2200
Назва Блоку
Mathematical Operators
Назва
FOR ALL

Programming

C
\u2200
JavaScript
\u2200
Java
\u2200
Json
\u2200
Python
\u2200
Perl
\x{2200}
PHP
\x{2200}
Ruby
\u{2200}
Rust
\u{2200}
Go
\u2200

Web

CSS
\002200
HtmlDecimal
∀
HtmlHexadecimal
∀
Url
%E2%88%80

Code

MD5
bc11b6a7652505f0e5f64f47458d735d
Sha1
516ac7e0c72e508d7f1d911dfcff4fcc7f72c540
Base64
4oiA

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

Programming Languages

C:

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

JavaScript:

const char = '\u2200';
console.log(char);  // Output: ∀

Java:

char c = '\u2200';
System.out.println(c);  // Output: ∀

JSON:

{"text": "\u2200"}  // Value: ∀

Python:

char = '\u2200'
print(char)  # Output: ∀

Perl:

my $char = "\x{2200}";
print $char;  # Output: ∀

PHP:

$char = "\x{2200}";
echo $char;  // Output: ∀

Ruby:

char = "\u{2200}"
puts char  # Output: ∀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002200";  /* Display: ∀ */
}

HTML Decimal:

<p>HTML decimal: &#8704;</p>  <!-- Display: ∀ -->

HTML Hexadecimal:

<p>HTML hex: &#x2200;</p>  <!-- Display: ∀ -->

URL Encoding:

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

Encodings

MD5:

bc11b6a7652505f0e5f64f47458d735d

SHA1:

516ac7e0c72e508d7f1d911dfcff4fcc7f72c540

Base64:

4oiA