Unicode Finder

"➐" U+2790(DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN)

U+2790
Block Name
Dingbats
Name
DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN

Programming

C
\u2790
JavaScript
\u2790
Java
\u2790
Json
\u2790
Python
\u2790
Perl
\x{2790}
PHP
\x{2790}
Ruby
\u{2790}
Rust
\u{2790}
Go
\u2790

Web

CSS
\002790
HtmlDecimal
➐
HtmlHexadecimal
➐
Url
%E2%9E%90

Code

MD5
8418b9cd9ed55b16568e162de78214b4
Sha1
ae5d680772009c95f98895803825bc59cb3e6703
Base64
4p6Q

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2790';
console.log(char);  // Output: ➐

Java:

char c = '\u2790';
System.out.println(c);  // Output: ➐

JSON:

{"text": "\u2790"}  // Value: ➐

Python:

char = '\u2790'
print(char)  # Output: ➐

Perl:

my $char = "\x{2790}";
print $char;  # Output: ➐

PHP:

$char = "\x{2790}";
echo $char;  // Output: ➐

Ruby:

char = "\u{2790}"
puts char  # Output: ➐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002790";  /* Display: ➐ */
}

HTML Decimal:

<p>HTML decimal: &#10128;</p>  <!-- Display: ➐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2790;</p>  <!-- Display: ➐ -->

URL Encoding:

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

Encodings

MD5:

8418b9cd9ed55b16568e162de78214b4

SHA1:

ae5d680772009c95f98895803825bc59cb3e6703

Base64:

4p6Q