Unicode Finder

"⁌" U+204C(BLACK LEFTWARDS BULLET)

U+204C
Назва Блоку
General Punctuation
Назва
BLACK LEFTWARDS BULLET

Programming

C
\u204C
JavaScript
\u204C
Java
\u204C
Json
\u204C
Python
\u204C
Perl
\x{204C}
PHP
\x{204C}
Ruby
\u{204C}
Rust
\u{204C}
Go
\u204C

Web

CSS
\00204C
HtmlDecimal
⁌
HtmlHexadecimal
⁌
Url
%E2%81%8C

Code

MD5
9d564ea7f1b816de12ded1b23fc20388
Sha1
71594faefeb32dfdab1189de36fa01a7f53c68c8
Base64
4oGM

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u204C';
console.log(char);  // Output: ⁌

Java:

char c = '\u204C';
System.out.println(c);  // Output: ⁌

JSON:

{"text": "\u204C"}  // Value: ⁌

Python:

char = '\u204C'
print(char)  # Output: ⁌

Perl:

my $char = "\x{204C}";
print $char;  # Output: ⁌

PHP:

$char = "\x{204C}";
echo $char;  // Output: ⁌

Ruby:

char = "\u{204C}"
puts char  # Output: ⁌

Rust:

let c = '\u{204C}';
println!("{}", c);  // Output: ⁌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00204C";  /* Display: ⁌ */
}

HTML Decimal:

<p>HTML decimal: &#8268;</p>  <!-- Display: ⁌ -->

HTML Hexadecimal:

<p>HTML hex: &#x204C;</p>  <!-- Display: ⁌ -->

URL Encoding:

// ⁌ URL encoding
https://unicodefinder.com/search.php?query=%E2%81%8C

Encodings

MD5:

9d564ea7f1b816de12ded1b23fc20388

SHA1:

71594faefeb32dfdab1189de36fa01a7f53c68c8

Base64:

4oGM