Unicode Finder

"⢓" U+2893(BRAILLE PATTERN DOTS-1258)

U+2893
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-1258

Programming

C
\u2893
JavaScript
\u2893
Java
\u2893
Json
\u2893
Python
\u2893
Perl
\x{2893}
PHP
\x{2893}
Ruby
\u{2893}
Rust
\u{2893}
Go
\u2893

Web

CSS
\002893
HtmlDecimal
⢓
HtmlHexadecimal
⢓
Url
%E2%A2%93

Code

MD5
77333c08630113996a5395ae0857fee7
Sha1
6f55c455f32c1f18b0cbdeac55250fb09150c018
Base64
4qKT

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2893';
console.log(char);  // Output: ⢓

Java:

char c = '\u2893';
System.out.println(c);  // Output: ⢓

JSON:

{"text": "\u2893"}  // Value: ⢓

Python:

char = '\u2893'
print(char)  # Output: ⢓

Perl:

my $char = "\x{2893}";
print $char;  # Output: ⢓

PHP:

$char = "\x{2893}";
echo $char;  // Output: ⢓

Ruby:

char = "\u{2893}"
puts char  # Output: ⢓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002893";  /* Display: ⢓ */
}

HTML Decimal:

<p>HTML decimal: &#10387;</p>  <!-- Display: ⢓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2893;</p>  <!-- Display: ⢓ -->

URL Encoding:

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

Encodings

MD5:

77333c08630113996a5395ae0857fee7

SHA1:

6f55c455f32c1f18b0cbdeac55250fb09150c018

Base64:

4qKT