Unicode Finder

"❶" U+2776(DINGBAT NEGATIVE CIRCLED DIGIT ONE)

U+2776
Block Name
Dingbats
Name
DINGBAT NEGATIVE CIRCLED DIGIT ONE

Programming

C
\u2776
JavaScript
\u2776
Java
\u2776
Json
\u2776
Python
\u2776
Perl
\x{2776}
PHP
\x{2776}
Ruby
\u{2776}
Rust
\u{2776}
Go
\u2776

Web

CSS
\002776
HtmlDecimal
❶
HtmlHexadecimal
❶
Url
%E2%9D%B6

Code

MD5
5b16c60ea84dd3988b8816fbd61e0917
Sha1
7f41410e741489b8f618fcb4ed0b3e2b9202550b
Base64
4p22

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2776';
console.log(char);  // Output: ❶

Java:

char c = '\u2776';
System.out.println(c);  // Output: ❶

JSON:

{"text": "\u2776"}  // Value: ❶

Python:

char = '\u2776'
print(char)  # Output: ❶

Perl:

my $char = "\x{2776}";
print $char;  # Output: ❶

PHP:

$char = "\x{2776}";
echo $char;  // Output: ❶

Ruby:

char = "\u{2776}"
puts char  # Output: ❶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002776";  /* Display: ❶ */
}

HTML Decimal:

<p>HTML decimal: &#10102;</p>  <!-- Display: ❶ -->

HTML Hexadecimal:

<p>HTML hex: &#x2776;</p>  <!-- Display: ❶ -->

URL Encoding:

// ❶ URL encoding
https://unicodefinder.com/search.php?query=%E2%9D%B6

Encodings

MD5:

5b16c60ea84dd3988b8816fbd61e0917

SHA1:

7f41410e741489b8f618fcb4ed0b3e2b9202550b

Base64:

4p22