Unicode Finder

"⦳" U+29B3(EMPTY SET WITH RIGHT ARROW ABOVE)

U+29B3
Block Name
Miscellaneous Mathematical Symbols-B
Name
EMPTY SET WITH RIGHT ARROW ABOVE

Programming

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

Web

CSS
\0029B3
HtmlDecimal
⦳
HtmlHexadecimal
⦳
Url
%E2%A6%B3

Code

MD5
16f5a416726d49f5e2e43997420c2d38
Sha1
e37823bd94e45c3ef9dc5053f12e07df29f2e018
Base64
4qaz

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u29B3';
console.log(char);  // Output: ⦳

Java:

char c = '\u29B3';
System.out.println(c);  // Output: ⦳

JSON:

{"text": "\u29B3"}  // Value: ⦳

Python:

char = '\u29B3'
print(char)  # Output: ⦳

Perl:

my $char = "\x{29B3}";
print $char;  # Output: ⦳

PHP:

$char = "\x{29B3}";
echo $char;  // Output: ⦳

Ruby:

char = "\u{29B3}"
puts char  # Output: ⦳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10675;</p>  <!-- Display: ⦳ -->

HTML Hexadecimal:

<p>HTML hex: &#x29B3;</p>  <!-- Display: ⦳ -->

URL Encoding:

// ⦳ URL encoding
https://unicodefinder.com/search.php?query=%E2%A6%B3

Encodings

MD5:

16f5a416726d49f5e2e43997420c2d38

SHA1:

e37823bd94e45c3ef9dc5053f12e07df29f2e018

Base64:

4qaz