Unicode Finder

"∙" U+2219(BULLET OPERATOR)

U+2219
Tên Khối
Mathematical Operators
Tên
BULLET OPERATOR

Programming

C
\u2219
JavaScript
\u2219
Java
\u2219
Json
\u2219
Python
\u2219
Perl
\x{2219}
PHP
\x{2219}
Ruby
\u{2219}
Rust
\u{2219}
Go
\u2219

Web

CSS
\002219
HtmlDecimal
∙
HtmlHexadecimal
∙
Url
%E2%88%99

Code

MD5
7ad230af211d13476ca2fee7c2817db9
Sha1
60adee8a2be7467fde7ed3cefaeac9b450413ef1
Base64
4oiZ

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u2219';
console.log(char);  // Output: ∙

Java:

char c = '\u2219';
System.out.println(c);  // Output: ∙

JSON:

{"text": "\u2219"}  // Value: ∙

Python:

char = '\u2219'
print(char)  # Output: ∙

Perl:

my $char = "\x{2219}";
print $char;  # Output: ∙

PHP:

$char = "\x{2219}";
echo $char;  // Output: ∙

Ruby:

char = "\u{2219}"
puts char  # Output: ∙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002219";  /* Display: ∙ */
}

HTML Decimal:

<p>HTML decimal: &#8729;</p>  <!-- Display: ∙ -->

HTML Hexadecimal:

<p>HTML hex: &#x2219;</p>  <!-- Display: ∙ -->

URL Encoding:

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

Encodings

MD5:

7ad230af211d13476ca2fee7c2817db9

SHA1:

60adee8a2be7467fde7ed3cefaeac9b450413ef1

Base64:

4oiZ