Unicode Finder

"⃟" U+20DF(COMBINING ENCLOSING DIAMOND)

U+20DF
Nama Blok
Combining Diacritical Marks for Symbols
Nama
COMBINING ENCLOSING DIAMOND

Programming

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

Web

CSS
\0020DF
HtmlDecimal
⃟
HtmlHexadecimal
⃟
Url
%E2%83%9F

Code

MD5
5f6bb65ae3c6da48de94617d0bc76ccf
Sha1
7ea92a9de95dbe050beea8553fdaed8f28941832
Base64
4oOf

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u20DF';
console.log(char);  // Output: ⃟

Java:

char c = '\u20DF';
System.out.println(c);  // Output: ⃟

JSON:

{"text": "\u20DF"}  // Value: ⃟

Python:

char = '\u20DF'
print(char)  # Output: ⃟

Perl:

my $char = "\x{20DF}";
print $char;  # Output: ⃟

PHP:

$char = "\x{20DF}";
echo $char;  // Output: ⃟

Ruby:

char = "\u{20DF}"
puts char  # Output: ⃟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8415;</p>  <!-- Display: ⃟ -->

HTML Hexadecimal:

<p>HTML hex: &#x20DF;</p>  <!-- Display: ⃟ -->

URL Encoding:

// ⃟ URL encoding
https://unicodefinder.com/search.php?query=%E2%83%9F

Encodings

MD5:

5f6bb65ae3c6da48de94617d0bc76ccf

SHA1:

7ea92a9de95dbe050beea8553fdaed8f28941832

Base64:

4oOf