Unicode Finder

"∨" U+2228(LOGICAL OR)

U+2228
Blockname
Mathematical Operators
Name
LOGICAL OR

Programming

C
\u2228
JavaScript
\u2228
Java
\u2228
Json
\u2228
Python
\u2228
Perl
\x{2228}
PHP
\x{2228}
Ruby
\u{2228}
Rust
\u{2228}
Go
\u2228

Web

CSS
\002228
HtmlDecimal
∨
HtmlHexadecimal
∨
Url
%E2%88%A8

Code

MD5
822460fab260f1488948087c158c3fe2
Sha1
58c3f54e5452c1afe5b8272a1c4d1d914aeb1d48
Base64
4oio

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2228';
console.log(char);  // Output: ∨

Java:

char c = '\u2228';
System.out.println(c);  // Output: ∨

JSON:

{"text": "\u2228"}  // Value: ∨

Python:

char = '\u2228'
print(char)  # Output: ∨

Perl:

my $char = "\x{2228}";
print $char;  # Output: ∨

PHP:

$char = "\x{2228}";
echo $char;  // Output: ∨

Ruby:

char = "\u{2228}"
puts char  # Output: ∨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002228";  /* Display: ∨ */
}

HTML Decimal:

<p>HTML decimal: &#8744;</p>  <!-- Display: ∨ -->

HTML Hexadecimal:

<p>HTML hex: &#x2228;</p>  <!-- Display: ∨ -->

URL Encoding:

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

Encodings

MD5:

822460fab260f1488948087c158c3fe2

SHA1:

58c3f54e5452c1afe5b8272a1c4d1d914aeb1d48

Base64:

4oio