Unicode Finder

"∘" U+2218(RING OPERATOR)

U+2218
Nama Blok
Mathematical Operators
Nama
RING OPERATOR

Programming

C
\u2218
JavaScript
\u2218
Java
\u2218
Json
\u2218
Python
\u2218
Perl
\x{2218}
PHP
\x{2218}
Ruby
\u{2218}
Rust
\u{2218}
Go
\u2218

Web

CSS
\002218
HtmlDecimal
∘
HtmlHexadecimal
∘
Url
%E2%88%98

Code

MD5
a0f16e46aaabb20f95b6d0c08f0cc003
Sha1
5b5909fddb525aa660491489f29130fb2a448fd7
Base64
4oiY

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2218';
console.log(char);  // Output: ∘

Java:

char c = '\u2218';
System.out.println(c);  // Output: ∘

JSON:

{"text": "\u2218"}  // Value: ∘

Python:

char = '\u2218'
print(char)  # Output: ∘

Perl:

my $char = "\x{2218}";
print $char;  # Output: ∘

PHP:

$char = "\x{2218}";
echo $char;  // Output: ∘

Ruby:

char = "\u{2218}"
puts char  # Output: ∘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002218";  /* Display: ∘ */
}

HTML Decimal:

<p>HTML decimal: &#8728;</p>  <!-- Display: ∘ -->

HTML Hexadecimal:

<p>HTML hex: &#x2218;</p>  <!-- Display: ∘ -->

URL Encoding:

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

Encodings

MD5:

a0f16e46aaabb20f95b6d0c08f0cc003

SHA1:

5b5909fddb525aa660491489f29130fb2a448fd7

Base64:

4oiY