Unicode Finder

"⦷" U+29B7(CIRCLED PARALLEL)

U+29B7
Block Name
Miscellaneous Mathematical Symbols-B
Name
CIRCLED PARALLEL

Programming

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

Web

CSS
\0029B7
HtmlDecimal
⦷
HtmlHexadecimal
⦷
Url
%E2%A6%B7

Code

MD5
66dc7d892d188454ed063598d17e1f72
Sha1
8eb19dbaeaa938eecfbb237522d3b7e1e97ab32b
Base64
4qa3

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u29B7';
console.log(char);  // Output: ⦷

Java:

char c = '\u29B7';
System.out.println(c);  // Output: ⦷

JSON:

{"text": "\u29B7"}  // Value: ⦷

Python:

char = '\u29B7'
print(char)  # Output: ⦷

Perl:

my $char = "\x{29B7}";
print $char;  # Output: ⦷

PHP:

$char = "\x{29B7}";
echo $char;  // Output: ⦷

Ruby:

char = "\u{29B7}"
puts char  # Output: ⦷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10679;</p>  <!-- Display: ⦷ -->

HTML Hexadecimal:

<p>HTML hex: &#x29B7;</p>  <!-- Display: ⦷ -->

URL Encoding:

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

Encodings

MD5:

66dc7d892d188454ed063598d17e1f72

SHA1:

8eb19dbaeaa938eecfbb237522d3b7e1e97ab32b

Base64:

4qa3