Unicode Finder

"❧" U+2767(ROTATED FLORAL HEART BULLET)

U+2767
Block Name
Dingbats
Name
ROTATED FLORAL HEART BULLET

Programming

C
\u2767
JavaScript
\u2767
Java
\u2767
Json
\u2767
Python
\u2767
Perl
\x{2767}
PHP
\x{2767}
Ruby
\u{2767}
Rust
\u{2767}
Go
\u2767

Web

CSS
\002767
HtmlDecimal
❧
HtmlHexadecimal
❧
Url
%E2%9D%A7

Code

MD5
80ccf04bf255bee629540f0a969187b0
Sha1
30c1e205b8a54e2018c0c9cb41a147c5ed87786a
Base64
4p2n

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2767';
console.log(char);  // Output: ❧

Java:

char c = '\u2767';
System.out.println(c);  // Output: ❧

JSON:

{"text": "\u2767"}  // Value: ❧

Python:

char = '\u2767'
print(char)  # Output: ❧

Perl:

my $char = "\x{2767}";
print $char;  # Output: ❧

PHP:

$char = "\x{2767}";
echo $char;  // Output: ❧

Ruby:

char = "\u{2767}"
puts char  # Output: ❧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002767";  /* Display: ❧ */
}

HTML Decimal:

<p>HTML decimal: &#10087;</p>  <!-- Display: ❧ -->

HTML Hexadecimal:

<p>HTML hex: &#x2767;</p>  <!-- Display: ❧ -->

URL Encoding:

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

Encodings

MD5:

80ccf04bf255bee629540f0a969187b0

SHA1:

30c1e205b8a54e2018c0c9cb41a147c5ed87786a

Base64:

4p2n