Unicode Finder

"❷" U+2777(DINGBAT NEGATIVE CIRCLED DIGIT TWO)

U+2777
Block Name
Dingbats
Name
DINGBAT NEGATIVE CIRCLED DIGIT TWO

Programming

C
\u2777
JavaScript
\u2777
Java
\u2777
Json
\u2777
Python
\u2777
Perl
\x{2777}
PHP
\x{2777}
Ruby
\u{2777}
Rust
\u{2777}
Go
\u2777

Web

CSS
\002777
HtmlDecimal
❷
HtmlHexadecimal
❷
Url
%E2%9D%B7

Code

MD5
50f0186c0b07a3f8dd1f8f9040fcba43
Sha1
51608642336b8dd2b7bc172997c899f5e2d8aea3
Base64
4p23

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2777';
console.log(char);  // Output: ❷

Java:

char c = '\u2777';
System.out.println(c);  // Output: ❷

JSON:

{"text": "\u2777"}  // Value: ❷

Python:

char = '\u2777'
print(char)  # Output: ❷

Perl:

my $char = "\x{2777}";
print $char;  # Output: ❷

PHP:

$char = "\x{2777}";
echo $char;  // Output: ❷

Ruby:

char = "\u{2777}"
puts char  # Output: ❷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002777";  /* Display: ❷ */
}

HTML Decimal:

<p>HTML decimal: &#10103;</p>  <!-- Display: ❷ -->

HTML Hexadecimal:

<p>HTML hex: &#x2777;</p>  <!-- Display: ❷ -->

URL Encoding:

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

Encodings

MD5:

50f0186c0b07a3f8dd1f8f9040fcba43

SHA1:

51608642336b8dd2b7bc172997c899f5e2d8aea3

Base64:

4p23