Unicode Finder

"⦂" U+2982(Z NOTATION TYPE COLON)

U+2982
Block Name
Miscellaneous Mathematical Symbols-B
Name
Z NOTATION TYPE COLON

Programming

C
\u2982
JavaScript
\u2982
Java
\u2982
Json
\u2982
Python
\u2982
Perl
\x{2982}
PHP
\x{2982}
Ruby
\u{2982}
Rust
\u{2982}
Go
\u2982

Web

CSS
\002982
HtmlDecimal
⦂
HtmlHexadecimal
⦂
Url
%E2%A6%82

Code

MD5
2d9ea69e3165126b346105df474da275
Sha1
7f36eab81df50964239862afd9517ab23a8e2e98
Base64
4qaC

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2982';
console.log(char);  // Output: ⦂

Java:

char c = '\u2982';
System.out.println(c);  // Output: ⦂

JSON:

{"text": "\u2982"}  // Value: ⦂

Python:

char = '\u2982'
print(char)  # Output: ⦂

Perl:

my $char = "\x{2982}";
print $char;  # Output: ⦂

PHP:

$char = "\x{2982}";
echo $char;  // Output: ⦂

Ruby:

char = "\u{2982}"
puts char  # Output: ⦂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002982";  /* Display: ⦂ */
}

HTML Decimal:

<p>HTML decimal: &#10626;</p>  <!-- Display: ⦂ -->

HTML Hexadecimal:

<p>HTML hex: &#x2982;</p>  <!-- Display: ⦂ -->

URL Encoding:

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

Encodings

MD5:

2d9ea69e3165126b346105df474da275

SHA1:

7f36eab81df50964239862afd9517ab23a8e2e98

Base64:

4qaC