Unicode Finder

"⧼" U+29FC(LEFT-POINTING CURVED ANGLE BRACKET)

U+29FC
Block Name
Miscellaneous Mathematical Symbols-B
Name
LEFT-POINTING CURVED ANGLE BRACKET

Programming

C
\u29FC
JavaScript
\u29FC
Java
\u29FC
Json
\u29FC
Python
\u29FC
Perl
\x{29FC}
PHP
\x{29FC}
Ruby
\u{29FC}
Rust
\u{29FC}
Go
\u29FC

Web

CSS
\0029FC
HtmlDecimal
⧼
HtmlHexadecimal
⧼
Url
%E2%A7%BC

Code

MD5
775519ccabcaa5efd054180dd0bc94e4
Sha1
89236a13bb51b1934c135d5d1473313cf8bdc1c8
Base64
4qe8

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u29FC';
console.log(char);  // Output: ⧼

Java:

char c = '\u29FC';
System.out.println(c);  // Output: ⧼

JSON:

{"text": "\u29FC"}  // Value: ⧼

Python:

char = '\u29FC'
print(char)  # Output: ⧼

Perl:

my $char = "\x{29FC}";
print $char;  # Output: ⧼

PHP:

$char = "\x{29FC}";
echo $char;  // Output: ⧼

Ruby:

char = "\u{29FC}"
puts char  # Output: ⧼

Rust:

let c = '\u{29FC}';
println!("{}", c);  // Output: ⧼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0029FC";  /* Display: ⧼ */
}

HTML Decimal:

<p>HTML decimal: &#10748;</p>  <!-- Display: ⧼ -->

HTML Hexadecimal:

<p>HTML hex: &#x29FC;</p>  <!-- Display: ⧼ -->

URL Encoding:

// ⧼ URL encoding
https://unicodefinder.com/search.php?query=%E2%A7%BC

Encodings

MD5:

775519ccabcaa5efd054180dd0bc94e4

SHA1:

89236a13bb51b1934c135d5d1473313cf8bdc1c8

Base64:

4qe8