Unicode Finder

"⊕" U+2295(CIRCLED PLUS)

U+2295
Block Name
Mathematical Operators
Name
CIRCLED PLUS

Programming

C
\u2295
JavaScript
\u2295
Java
\u2295
Json
\u2295
Python
\u2295
Perl
\x{2295}
PHP
\x{2295}
Ruby
\u{2295}
Rust
\u{2295}
Go
\u2295

Web

CSS
\002295
HtmlDecimal
⊕
HtmlHexadecimal
⊕
Url
%E2%8A%95

Code

MD5
3eb02fff4997ea78e9c47152ebbc24c3
Sha1
6bb8a706316146a0a6f701c6d0cb1c5d3daa1c9f
Base64
4oqV

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2295';
console.log(char);  // Output: ⊕

Java:

char c = '\u2295';
System.out.println(c);  // Output: ⊕

JSON:

{"text": "\u2295"}  // Value: ⊕

Python:

char = '\u2295'
print(char)  # Output: ⊕

Perl:

my $char = "\x{2295}";
print $char;  # Output: ⊕

PHP:

$char = "\x{2295}";
echo $char;  // Output: ⊕

Ruby:

char = "\u{2295}"
puts char  # Output: ⊕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002295";  /* Display: ⊕ */
}

HTML Decimal:

<p>HTML decimal: &#8853;</p>  <!-- Display: ⊕ -->

HTML Hexadecimal:

<p>HTML hex: &#x2295;</p>  <!-- Display: ⊕ -->

URL Encoding:

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

Encodings

MD5:

3eb02fff4997ea78e9c47152ebbc24c3

SHA1:

6bb8a706316146a0a6f701c6d0cb1c5d3daa1c9f

Base64:

4oqV