Unicode Finder

"⊬" U+22AC(DOES NOT PROVE)

U+22AC
Block Name
Mathematical Operators
Name
DOES NOT PROVE

Programming

C
\u22AC
JavaScript
\u22AC
Java
\u22AC
Json
\u22AC
Python
\u22AC
Perl
\x{22AC}
PHP
\x{22AC}
Ruby
\u{22AC}
Rust
\u{22AC}
Go
\u22AC

Web

CSS
\0022AC
HtmlDecimal
⊬
HtmlHexadecimal
⊬
Url
%E2%8A%AC

Code

MD5
2b809a015e329c5105c68c7fd99fbcd3
Sha1
4d7cb10be8677cea1b8579e2b8526519d6aa6332
Base64
4oqs

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u22AC';
console.log(char);  // Output: ⊬

Java:

char c = '\u22AC';
System.out.println(c);  // Output: ⊬

JSON:

{"text": "\u22AC"}  // Value: ⊬

Python:

char = '\u22AC'
print(char)  # Output: ⊬

Perl:

my $char = "\x{22AC}";
print $char;  # Output: ⊬

PHP:

$char = "\x{22AC}";
echo $char;  // Output: ⊬

Ruby:

char = "\u{22AC}"
puts char  # Output: ⊬

Rust:

let c = '\u{22AC}';
println!("{}", c);  // Output: ⊬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0022AC";  /* Display: ⊬ */
}

HTML Decimal:

<p>HTML decimal: &#8876;</p>  <!-- Display: ⊬ -->

HTML Hexadecimal:

<p>HTML hex: &#x22AC;</p>  <!-- Display: ⊬ -->

URL Encoding:

// ⊬ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%AC

Encodings

MD5:

2b809a015e329c5105c68c7fd99fbcd3

SHA1:

4d7cb10be8677cea1b8579e2b8526519d6aa6332

Base64:

4oqs