Unicode Finder

"⊖" U+2296(CIRCLED MINUS)

U+2296
Block Name
Mathematical Operators
Name
CIRCLED MINUS

Programming

C
\u2296
JavaScript
\u2296
Java
\u2296
Json
\u2296
Python
\u2296
Perl
\x{2296}
PHP
\x{2296}
Ruby
\u{2296}
Rust
\u{2296}
Go
\u2296

Web

CSS
\002296
HtmlDecimal
⊖
HtmlHexadecimal
⊖
Url
%E2%8A%96

Code

MD5
6c0a012ab66db636cc62525e16c26859
Sha1
7615878b3e86a3e119db4afdccfa13a5bcccdab4
Base64
4oqW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2296';
console.log(char);  // Output: ⊖

Java:

char c = '\u2296';
System.out.println(c);  // Output: ⊖

JSON:

{"text": "\u2296"}  // Value: ⊖

Python:

char = '\u2296'
print(char)  # Output: ⊖

Perl:

my $char = "\x{2296}";
print $char;  # Output: ⊖

PHP:

$char = "\x{2296}";
echo $char;  // Output: ⊖

Ruby:

char = "\u{2296}"
puts char  # Output: ⊖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002296";  /* Display: ⊖ */
}

HTML Decimal:

<p>HTML decimal: &#8854;</p>  <!-- Display: ⊖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2296;</p>  <!-- Display: ⊖ -->

URL Encoding:

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

Encodings

MD5:

6c0a012ab66db636cc62525e16c26859

SHA1:

7615878b3e86a3e119db4afdccfa13a5bcccdab4

Base64:

4oqW