Unicode Finder

"⠕" U+2815(BRAILLE PATTERN DOTS-135)

U+2815
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-135

Programming

C
\u2815
JavaScript
\u2815
Java
\u2815
Json
\u2815
Python
\u2815
Perl
\x{2815}
PHP
\x{2815}
Ruby
\u{2815}
Rust
\u{2815}
Go
\u2815

Web

CSS
\002815
HtmlDecimal
⠕
HtmlHexadecimal
⠕
Url
%E2%A0%95

Code

MD5
3e70211bde599e6de56cff948627ac98
Sha1
f9dcd71f00873a8ff7486bd2d5a15bb49949aa59
Base64
4qCV

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2815';
console.log(char);  // Output: ⠕

Java:

char c = '\u2815';
System.out.println(c);  // Output: ⠕

JSON:

{"text": "\u2815"}  // Value: ⠕

Python:

char = '\u2815'
print(char)  # Output: ⠕

Perl:

my $char = "\x{2815}";
print $char;  # Output: ⠕

PHP:

$char = "\x{2815}";
echo $char;  // Output: ⠕

Ruby:

char = "\u{2815}"
puts char  # Output: ⠕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002815";  /* Display: ⠕ */
}

HTML Decimal:

<p>HTML decimal: &#10261;</p>  <!-- Display: ⠕ -->

HTML Hexadecimal:

<p>HTML hex: &#x2815;</p>  <!-- Display: ⠕ -->

URL Encoding:

// ⠕ URL encoding
https://unicodefinder.com/search.php?query=%E2%A0%95

Encodings

MD5:

3e70211bde599e6de56cff948627ac98

SHA1:

f9dcd71f00873a8ff7486bd2d5a15bb49949aa59

Base64:

4qCV