Unicode Finder

"⦍" U+298D(LEFT SQUARE BRACKET WITH TICK IN TOP CORNER)

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

Programming

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

Web

CSS
\00298D
HtmlDecimal
⦍
HtmlHexadecimal
⦍
Url
%E2%A6%8D

Code

MD5
b00ea1fd198e7a272efe7a644f803c13
Sha1
b9d65be4c536ccd0e1655454fc009709b327e2f4
Base64
4qaN

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u298D';
console.log(char);  // Output: ⦍

Java:

char c = '\u298D';
System.out.println(c);  // Output: ⦍

JSON:

{"text": "\u298D"}  // Value: ⦍

Python:

char = '\u298D'
print(char)  # Output: ⦍

Perl:

my $char = "\x{298D}";
print $char;  # Output: ⦍

PHP:

$char = "\x{298D}";
echo $char;  // Output: ⦍

Ruby:

char = "\u{298D}"
puts char  # Output: ⦍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10637;</p>  <!-- Display: ⦍ -->

HTML Hexadecimal:

<p>HTML hex: &#x298D;</p>  <!-- Display: ⦍ -->

URL Encoding:

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

Encodings

MD5:

b00ea1fd198e7a272efe7a644f803c13

SHA1:

b9d65be4c536ccd0e1655454fc009709b327e2f4

Base64:

4qaN