Unicode Finder

"∖" U+2216(SET MINUS)

U+2216
Nama Blok
Mathematical Operators
Nama
SET MINUS

Programming

C
\u2216
JavaScript
\u2216
Java
\u2216
Json
\u2216
Python
\u2216
Perl
\x{2216}
PHP
\x{2216}
Ruby
\u{2216}
Rust
\u{2216}
Go
\u2216

Web

CSS
\002216
HtmlDecimal
∖
HtmlHexadecimal
∖
Url
%E2%88%96

Code

MD5
e111896236edfdd01878762d26655cee
Sha1
07b7f6e9b3d0fdeb44c8d3f9ace06d71fc42cf94
Base64
4oiW

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2216';
console.log(char);  // Output: ∖

Java:

char c = '\u2216';
System.out.println(c);  // Output: ∖

JSON:

{"text": "\u2216"}  // Value: ∖

Python:

char = '\u2216'
print(char)  # Output: ∖

Perl:

my $char = "\x{2216}";
print $char;  # Output: ∖

PHP:

$char = "\x{2216}";
echo $char;  // Output: ∖

Ruby:

char = "\u{2216}"
puts char  # Output: ∖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002216";  /* Display: ∖ */
}

HTML Decimal:

<p>HTML decimal: &#8726;</p>  <!-- Display: ∖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2216;</p>  <!-- Display: ∖ -->

URL Encoding:

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

Encodings

MD5:

e111896236edfdd01878762d26655cee

SHA1:

07b7f6e9b3d0fdeb44c8d3f9ace06d71fc42cf94

Base64:

4oiW