Unicode Finder

"⦁" U+2981(Z NOTATION SPOT)

U+2981
Block Name
Miscellaneous Mathematical Symbols-B
Name
Z NOTATION SPOT

Programming

C
\u2981
JavaScript
\u2981
Java
\u2981
Json
\u2981
Python
\u2981
Perl
\x{2981}
PHP
\x{2981}
Ruby
\u{2981}
Rust
\u{2981}
Go
\u2981

Web

CSS
\002981
HtmlDecimal
⦁
HtmlHexadecimal
⦁
Url
%E2%A6%81

Code

MD5
851d92b6d70c90a8bb7c716e39636310
Sha1
a7c0460a707b305405d4cf53125bf10023ce1bda
Base64
4qaB

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2981';
console.log(char);  // Output: ⦁

Java:

char c = '\u2981';
System.out.println(c);  // Output: ⦁

JSON:

{"text": "\u2981"}  // Value: ⦁

Python:

char = '\u2981'
print(char)  # Output: ⦁

Perl:

my $char = "\x{2981}";
print $char;  # Output: ⦁

PHP:

$char = "\x{2981}";
echo $char;  // Output: ⦁

Ruby:

char = "\u{2981}"
puts char  # Output: ⦁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002981";  /* Display: ⦁ */
}

HTML Decimal:

<p>HTML decimal: &#10625;</p>  <!-- Display: ⦁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2981;</p>  <!-- Display: ⦁ -->

URL Encoding:

// ⦁ URL encoding
https://unicodefinder.com/search.php?query=%E2%A6%81

Encodings

MD5:

851d92b6d70c90a8bb7c716e39636310

SHA1:

a7c0460a707b305405d4cf53125bf10023ce1bda

Base64:

4qaB