Unicode Finder

"⠩" U+2829(BRAILLE PATTERN DOTS-146)

U+2829
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-146

Programming

C
\u2829
JavaScript
\u2829
Java
\u2829
Json
\u2829
Python
\u2829
Perl
\x{2829}
PHP
\x{2829}
Ruby
\u{2829}
Rust
\u{2829}
Go
\u2829

Web

CSS
\002829
HtmlDecimal
⠩
HtmlHexadecimal
⠩
Url
%E2%A0%A9

Code

MD5
63793aea1f76f812ca79aefbd4dae39d
Sha1
b1b9c0006618bedc886dee61aa9e8074b0325316
Base64
4qCp

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2829';
console.log(char);  // Output: ⠩

Java:

char c = '\u2829';
System.out.println(c);  // Output: ⠩

JSON:

{"text": "\u2829"}  // Value: ⠩

Python:

char = '\u2829'
print(char)  # Output: ⠩

Perl:

my $char = "\x{2829}";
print $char;  # Output: ⠩

PHP:

$char = "\x{2829}";
echo $char;  // Output: ⠩

Ruby:

char = "\u{2829}"
puts char  # Output: ⠩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002829";  /* Display: ⠩ */
}

HTML Decimal:

<p>HTML decimal: &#10281;</p>  <!-- Display: ⠩ -->

HTML Hexadecimal:

<p>HTML hex: &#x2829;</p>  <!-- Display: ⠩ -->

URL Encoding:

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

Encodings

MD5:

63793aea1f76f812ca79aefbd4dae39d

SHA1:

b1b9c0006618bedc886dee61aa9e8074b0325316

Base64:

4qCp