Unicode Finder

"⢅" U+2885(BRAILLE PATTERN DOTS-138)

U+2885
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-138

Programming

C
\u2885
JavaScript
\u2885
Java
\u2885
Json
\u2885
Python
\u2885
Perl
\x{2885}
PHP
\x{2885}
Ruby
\u{2885}
Rust
\u{2885}
Go
\u2885

Web

CSS
\002885
HtmlDecimal
⢅
HtmlHexadecimal
⢅
Url
%E2%A2%85

Code

MD5
ede0f3ec085e77d15af716f5721a47ee
Sha1
3a080f36dfcade189355bb89653cf69a268a3f8b
Base64
4qKF

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2885';
console.log(char);  // Output: ⢅

Java:

char c = '\u2885';
System.out.println(c);  // Output: ⢅

JSON:

{"text": "\u2885"}  // Value: ⢅

Python:

char = '\u2885'
print(char)  # Output: ⢅

Perl:

my $char = "\x{2885}";
print $char;  # Output: ⢅

PHP:

$char = "\x{2885}";
echo $char;  // Output: ⢅

Ruby:

char = "\u{2885}"
puts char  # Output: ⢅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002885";  /* Display: ⢅ */
}

HTML Decimal:

<p>HTML decimal: &#10373;</p>  <!-- Display: ⢅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2885;</p>  <!-- Display: ⢅ -->

URL Encoding:

// ⢅ URL encoding
https://unicodefinder.com/search.php?query=%E2%A2%85

Encodings

MD5:

ede0f3ec085e77d15af716f5721a47ee

SHA1:

3a080f36dfcade189355bb89653cf69a268a3f8b

Base64:

4qKF