Unicode Finder

"➀" U+2780(DINGBAT CIRCLED SANS-SERIF DIGIT ONE)

U+2780
Block Name
Dingbats
Name
DINGBAT CIRCLED SANS-SERIF DIGIT ONE

Programming

C
\u2780
JavaScript
\u2780
Java
\u2780
Json
\u2780
Python
\u2780
Perl
\x{2780}
PHP
\x{2780}
Ruby
\u{2780}
Rust
\u{2780}
Go
\u2780

Web

CSS
\002780
HtmlDecimal
➀
HtmlHexadecimal
➀
Url
%E2%9E%80

Code

MD5
8d2d58366dd1033327bad656cbfcc8f1
Sha1
8a4e5b23f948d77d452e86d8da73d3ed47448ccf
Base64
4p6A

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2780';
console.log(char);  // Output: ➀

Java:

char c = '\u2780';
System.out.println(c);  // Output: ➀

JSON:

{"text": "\u2780"}  // Value: ➀

Python:

char = '\u2780'
print(char)  # Output: ➀

Perl:

my $char = "\x{2780}";
print $char;  # Output: ➀

PHP:

$char = "\x{2780}";
echo $char;  // Output: ➀

Ruby:

char = "\u{2780}"
puts char  # Output: ➀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002780";  /* Display: ➀ */
}

HTML Decimal:

<p>HTML decimal: &#10112;</p>  <!-- Display: ➀ -->

HTML Hexadecimal:

<p>HTML hex: &#x2780;</p>  <!-- Display: ➀ -->

URL Encoding:

// ➀ URL encoding
https://unicodefinder.com/search.php?query=%E2%9E%80

Encodings

MD5:

8d2d58366dd1033327bad656cbfcc8f1

SHA1:

8a4e5b23f948d77d452e86d8da73d3ed47448ccf

Base64:

4p6A