Unicode Finder

"⣬" U+28EC(BRAILLE PATTERN DOTS-34678)

U+28EC
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-34678

Programming

C
\u28EC
JavaScript
\u28EC
Java
\u28EC
Json
\u28EC
Python
\u28EC
Perl
\x{28EC}
PHP
\x{28EC}
Ruby
\u{28EC}
Rust
\u{28EC}
Go
\u28EC

Web

CSS
\0028EC
HtmlDecimal
⣬
HtmlHexadecimal
⣬
Url
%E2%A3%AC

Code

MD5
e1fb84d816e2ae8460d960059633b104
Sha1
0f1a80f026dc01b94f21ef3144e2417344431717
Base64
4qOs

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u28EC';
console.log(char);  // Output: ⣬

Java:

char c = '\u28EC';
System.out.println(c);  // Output: ⣬

JSON:

{"text": "\u28EC"}  // Value: ⣬

Python:

char = '\u28EC'
print(char)  # Output: ⣬

Perl:

my $char = "\x{28EC}";
print $char;  # Output: ⣬

PHP:

$char = "\x{28EC}";
echo $char;  // Output: ⣬

Ruby:

char = "\u{28EC}"
puts char  # Output: ⣬

Rust:

let c = '\u{28EC}';
println!("{}", c);  // Output: ⣬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0028EC";  /* Display: ⣬ */
}

HTML Decimal:

<p>HTML decimal: &#10476;</p>  <!-- Display: ⣬ -->

HTML Hexadecimal:

<p>HTML hex: &#x28EC;</p>  <!-- Display: ⣬ -->

URL Encoding:

// ⣬ URL encoding
https://unicodefinder.com/search.php?query=%E2%A3%AC

Encodings

MD5:

e1fb84d816e2ae8460d960059633b104

SHA1:

0f1a80f026dc01b94f21ef3144e2417344431717

Base64:

4qOs