Unicode Finder

"⡩" U+2869(BRAILLE PATTERN DOTS-1467)

U+2869
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-1467

Programming

C
\u2869
JavaScript
\u2869
Java
\u2869
Json
\u2869
Python
\u2869
Perl
\x{2869}
PHP
\x{2869}
Ruby
\u{2869}
Rust
\u{2869}
Go
\u2869

Web

CSS
\002869
HtmlDecimal
⡩
HtmlHexadecimal
⡩
Url
%E2%A1%A9

Code

MD5
48f31a381395d81fde0a5b851db1ef4c
Sha1
b4e5d76b0328e160803334f4e160920598085d78
Base64
4qGp

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2869';
console.log(char);  // Output: ⡩

Java:

char c = '\u2869';
System.out.println(c);  // Output: ⡩

JSON:

{"text": "\u2869"}  // Value: ⡩

Python:

char = '\u2869'
print(char)  # Output: ⡩

Perl:

my $char = "\x{2869}";
print $char;  # Output: ⡩

PHP:

$char = "\x{2869}";
echo $char;  // Output: ⡩

Ruby:

char = "\u{2869}"
puts char  # Output: ⡩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002869";  /* Display: ⡩ */
}

HTML Decimal:

<p>HTML decimal: &#10345;</p>  <!-- Display: ⡩ -->

HTML Hexadecimal:

<p>HTML hex: &#x2869;</p>  <!-- Display: ⡩ -->

URL Encoding:

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

Encodings

MD5:

48f31a381395d81fde0a5b851db1ef4c

SHA1:

b4e5d76b0328e160803334f4e160920598085d78

Base64:

4qGp