Unicode Finder

"⢗" U+2897(BRAILLE PATTERN DOTS-12358)

U+2897
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-12358

Programming

C
\u2897
JavaScript
\u2897
Java
\u2897
Json
\u2897
Python
\u2897
Perl
\x{2897}
PHP
\x{2897}
Ruby
\u{2897}
Rust
\u{2897}
Go
\u2897

Web

CSS
\002897
HtmlDecimal
⢗
HtmlHexadecimal
⢗
Url
%E2%A2%97

Code

MD5
0338c93b60c0c66eafa270dff532341f
Sha1
4d29031a46aba0219eed950d9dd7bac0b4b231c9
Base64
4qKX

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2897';
console.log(char);  // Output: ⢗

Java:

char c = '\u2897';
System.out.println(c);  // Output: ⢗

JSON:

{"text": "\u2897"}  // Value: ⢗

Python:

char = '\u2897'
print(char)  # Output: ⢗

Perl:

my $char = "\x{2897}";
print $char;  # Output: ⢗

PHP:

$char = "\x{2897}";
echo $char;  // Output: ⢗

Ruby:

char = "\u{2897}"
puts char  # Output: ⢗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002897";  /* Display: ⢗ */
}

HTML Decimal:

<p>HTML decimal: &#10391;</p>  <!-- Display: ⢗ -->

HTML Hexadecimal:

<p>HTML hex: &#x2897;</p>  <!-- Display: ⢗ -->

URL Encoding:

// ⢗ URL encoding
https://unicodefinder.com/search.php?query=%E2%A2%97

Encodings

MD5:

0338c93b60c0c66eafa270dff532341f

SHA1:

4d29031a46aba0219eed950d9dd7bac0b4b231c9

Base64:

4qKX