Unicode Finder

"➇" U+2787(DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT)

U+2787
Block Name
Dingbats
Name
DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT

Programming

C
\u2787
JavaScript
\u2787
Java
\u2787
Json
\u2787
Python
\u2787
Perl
\x{2787}
PHP
\x{2787}
Ruby
\u{2787}
Rust
\u{2787}
Go
\u2787

Web

CSS
\002787
HtmlDecimal
➇
HtmlHexadecimal
➇
Url
%E2%9E%87

Code

MD5
ef6823805e6f722e8b40d2eade6e95d7
Sha1
c6f623edfe1a90613e87076d9c752d06ac726c81
Base64
4p6H

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2787';
console.log(char);  // Output: ➇

Java:

char c = '\u2787';
System.out.println(c);  // Output: ➇

JSON:

{"text": "\u2787"}  // Value: ➇

Python:

char = '\u2787'
print(char)  # Output: ➇

Perl:

my $char = "\x{2787}";
print $char;  # Output: ➇

PHP:

$char = "\x{2787}";
echo $char;  // Output: ➇

Ruby:

char = "\u{2787}"
puts char  # Output: ➇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002787";  /* Display: ➇ */
}

HTML Decimal:

<p>HTML decimal: &#10119;</p>  <!-- Display: ➇ -->

HTML Hexadecimal:

<p>HTML hex: &#x2787;</p>  <!-- Display: ➇ -->

URL Encoding:

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

Encodings

MD5:

ef6823805e6f722e8b40d2eade6e95d7

SHA1:

c6f623edfe1a90613e87076d9c752d06ac726c81

Base64:

4p6H