Unicode Finder

"⦏" U+298F(LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER)

U+298F
Block Name
Miscellaneous Mathematical Symbols-B
Name
LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER

Programming

C
\u298F
JavaScript
\u298F
Java
\u298F
Json
\u298F
Python
\u298F
Perl
\x{298F}
PHP
\x{298F}
Ruby
\u{298F}
Rust
\u{298F}
Go
\u298F

Web

CSS
\00298F
HtmlDecimal
⦏
HtmlHexadecimal
⦏
Url
%E2%A6%8F

Code

MD5
a175f7b5af11fa38e711b21188d6cacf
Sha1
fd7fee7d0522ddf09d4b31c05c162620680a5e37
Base64
4qaP

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u298F';
console.log(char);  // Output: ⦏

Java:

char c = '\u298F';
System.out.println(c);  // Output: ⦏

JSON:

{"text": "\u298F"}  // Value: ⦏

Python:

char = '\u298F'
print(char)  # Output: ⦏

Perl:

my $char = "\x{298F}";
print $char;  # Output: ⦏

PHP:

$char = "\x{298F}";
echo $char;  // Output: ⦏

Ruby:

char = "\u{298F}"
puts char  # Output: ⦏

Rust:

let c = '\u{298F}';
println!("{}", c);  // Output: ⦏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00298F";  /* Display: ⦏ */
}

HTML Decimal:

<p>HTML decimal: &#10639;</p>  <!-- Display: ⦏ -->

HTML Hexadecimal:

<p>HTML hex: &#x298F;</p>  <!-- Display: ⦏ -->

URL Encoding:

// ⦏ URL encoding
https://unicodefinder.com/search.php?query=%E2%A6%8F

Encodings

MD5:

a175f7b5af11fa38e711b21188d6cacf

SHA1:

fd7fee7d0522ddf09d4b31c05c162620680a5e37

Base64:

4qaP