Unicode Finder

"⃠" U+20E0(COMBINING ENCLOSING CIRCLE BACKSLASH)

U+20E0
שם בלוק
Combining Diacritical Marks for Symbols
שם
COMBINING ENCLOSING CIRCLE BACKSLASH

Programming

C
\u20E0
JavaScript
\u20E0
Java
\u20E0
Json
\u20E0
Python
\u20E0
Perl
\x{20E0}
PHP
\x{20E0}
Ruby
\u{20E0}
Rust
\u{20E0}
Go
\u20E0

Web

CSS
\0020E0
HtmlDecimal
⃠
HtmlHexadecimal
⃠
Url
%E2%83%A0

Code

MD5
8c5a1380961d3aec04d58ef76eca2e0b
Sha1
24f1e206b8233e0c2df3b4ed7dd58aab9163e7e7
Base64
4oOg

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u20E0';
console.log(char);  // Output: ⃠

Java:

char c = '\u20E0';
System.out.println(c);  // Output: ⃠

JSON:

{"text": "\u20E0"}  // Value: ⃠

Python:

char = '\u20E0'
print(char)  # Output: ⃠

Perl:

my $char = "\x{20E0}";
print $char;  # Output: ⃠

PHP:

$char = "\x{20E0}";
echo $char;  // Output: ⃠

Ruby:

char = "\u{20E0}"
puts char  # Output: ⃠

Rust:

let c = '\u{20E0}';
println!("{}", c);  // Output: ⃠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0020E0";  /* Display: ⃠ */
}

HTML Decimal:

<p>HTML decimal: &#8416;</p>  <!-- Display: ⃠ -->

HTML Hexadecimal:

<p>HTML hex: &#x20E0;</p>  <!-- Display: ⃠ -->

URL Encoding:

// ⃠ URL encoding
https://unicodefinder.com/search.php?query=%E2%83%A0

Encodings

MD5:

8c5a1380961d3aec04d58ef76eca2e0b

SHA1:

24f1e206b8233e0c2df3b4ed7dd58aab9163e7e7

Base64:

4oOg