Unicode Finder

"⡒" U+2852(BRAILLE PATTERN DOTS-257)

U+2852
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-257

Programming

C
\u2852
JavaScript
\u2852
Java
\u2852
Json
\u2852
Python
\u2852
Perl
\x{2852}
PHP
\x{2852}
Ruby
\u{2852}
Rust
\u{2852}
Go
\u2852

Web

CSS
\002852
HtmlDecimal
⡒
HtmlHexadecimal
⡒
Url
%E2%A1%92

Code

MD5
2fe40e252fbf4f6c101f9ff8c95d70e8
Sha1
3dd9389ae3d2ab5da4e163ce934de7a1de9058f8
Base64
4qGS

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2852';
console.log(char);  // Output: ⡒

Java:

char c = '\u2852';
System.out.println(c);  // Output: ⡒

JSON:

{"text": "\u2852"}  // Value: ⡒

Python:

char = '\u2852'
print(char)  # Output: ⡒

Perl:

my $char = "\x{2852}";
print $char;  # Output: ⡒

PHP:

$char = "\x{2852}";
echo $char;  // Output: ⡒

Ruby:

char = "\u{2852}"
puts char  # Output: ⡒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002852";  /* Display: ⡒ */
}

HTML Decimal:

<p>HTML decimal: &#10322;</p>  <!-- Display: ⡒ -->

HTML Hexadecimal:

<p>HTML hex: &#x2852;</p>  <!-- Display: ⡒ -->

URL Encoding:

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

Encodings

MD5:

2fe40e252fbf4f6c101f9ff8c95d70e8

SHA1:

3dd9389ae3d2ab5da4e163ce934de7a1de9058f8

Base64:

4qGS