Unicode Finder

"⊝" U+229D(CIRCLED DASH)

U+229D
Block Name
Mathematical Operators
Name
CIRCLED DASH

Programming

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

Web

CSS
\00229D
HtmlDecimal
⊝
HtmlHexadecimal
⊝
Url
%E2%8A%9D

Code

MD5
336c769c0ed63c040d2d90299f924286
Sha1
d5536d927b6ce7df995c994ae94bb953edd4c404
Base64
4oqd

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u229D';
console.log(char);  // Output: ⊝

Java:

char c = '\u229D';
System.out.println(c);  // Output: ⊝

JSON:

{"text": "\u229D"}  // Value: ⊝

Python:

char = '\u229D'
print(char)  # Output: ⊝

Perl:

my $char = "\x{229D}";
print $char;  # Output: ⊝

PHP:

$char = "\x{229D}";
echo $char;  // Output: ⊝

Ruby:

char = "\u{229D}"
puts char  # Output: ⊝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8861;</p>  <!-- Display: ⊝ -->

HTML Hexadecimal:

<p>HTML hex: &#x229D;</p>  <!-- Display: ⊝ -->

URL Encoding:

// ⊝ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%9D

Encodings

MD5:

336c769c0ed63c040d2d90299f924286

SHA1:

d5536d927b6ce7df995c994ae94bb953edd4c404

Base64:

4oqd