Unicode Finder

"⠧" U+2827(BRAILLE PATTERN DOTS-1236)

U+2827
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-1236

Programming

C
\u2827
JavaScript
\u2827
Java
\u2827
Json
\u2827
Python
\u2827
Perl
\x{2827}
PHP
\x{2827}
Ruby
\u{2827}
Rust
\u{2827}
Go
\u2827

Web

CSS
\002827
HtmlDecimal
⠧
HtmlHexadecimal
⠧
Url
%E2%A0%A7

Code

MD5
1f0b796c368df880a4a88443fe1c4060
Sha1
74aa2b256dfcd49d8aabed407314d8cd19543a3b
Base64
4qCn

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2827';
console.log(char);  // Output: ⠧

Java:

char c = '\u2827';
System.out.println(c);  // Output: ⠧

JSON:

{"text": "\u2827"}  // Value: ⠧

Python:

char = '\u2827'
print(char)  # Output: ⠧

Perl:

my $char = "\x{2827}";
print $char;  # Output: ⠧

PHP:

$char = "\x{2827}";
echo $char;  // Output: ⠧

Ruby:

char = "\u{2827}"
puts char  # Output: ⠧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002827";  /* Display: ⠧ */
}

HTML Decimal:

<p>HTML decimal: &#10279;</p>  <!-- Display: ⠧ -->

HTML Hexadecimal:

<p>HTML hex: &#x2827;</p>  <!-- Display: ⠧ -->

URL Encoding:

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

Encodings

MD5:

1f0b796c368df880a4a88443fe1c4060

SHA1:

74aa2b256dfcd49d8aabed407314d8cd19543a3b

Base64:

4qCn