Unicode Finder

"⡙" U+2859(BRAILLE PATTERN DOTS-1457)

U+2859
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-1457

Programming

C
\u2859
JavaScript
\u2859
Java
\u2859
Json
\u2859
Python
\u2859
Perl
\x{2859}
PHP
\x{2859}
Ruby
\u{2859}
Rust
\u{2859}
Go
\u2859

Web

CSS
\002859
HtmlDecimal
⡙
HtmlHexadecimal
⡙
Url
%E2%A1%99

Code

MD5
589fe0a47142a7d67f4ff6ce42ee0a39
Sha1
2a2f789bf540947d189d43f249abcefc5f6deb87
Base64
4qGZ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2859';
console.log(char);  // Output: ⡙

Java:

char c = '\u2859';
System.out.println(c);  // Output: ⡙

JSON:

{"text": "\u2859"}  // Value: ⡙

Python:

char = '\u2859'
print(char)  # Output: ⡙

Perl:

my $char = "\x{2859}";
print $char;  # Output: ⡙

PHP:

$char = "\x{2859}";
echo $char;  // Output: ⡙

Ruby:

char = "\u{2859}"
puts char  # Output: ⡙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002859";  /* Display: ⡙ */
}

HTML Decimal:

<p>HTML decimal: &#10329;</p>  <!-- Display: ⡙ -->

HTML Hexadecimal:

<p>HTML hex: &#x2859;</p>  <!-- Display: ⡙ -->

URL Encoding:

// ⡙ URL encoding
https://unicodefinder.com/search.php?query=%E2%A1%99

Encodings

MD5:

589fe0a47142a7d67f4ff6ce42ee0a39

SHA1:

2a2f789bf540947d189d43f249abcefc5f6deb87

Base64:

4qGZ