Unicode Finder

"᷀" U+1DC0(COMBINING DOTTED GRAVE ACCENT)

U+1DC0
Nume Bloc
Combining Diacritical Marks Supplement
Nume
COMBINING DOTTED GRAVE ACCENT

Programming

C
\u1DC0
JavaScript
\u1DC0
Java
\u1DC0
Json
\u1DC0
Python
\u1DC0
Perl
\x{1DC0}
PHP
\x{1DC0}
Ruby
\u{1DC0}
Rust
\u{1DC0}
Go
\u1DC0

Web

CSS
\001DC0
HtmlDecimal
᷀
HtmlHexadecimal
᷀
Url
%E1%B7%80

Code

MD5
339a1329a141b94e3f09df96645c612f
Sha1
ae0aa7c124a9cc7fdd149e4935c892ca941da139
Base64
4beA

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1DC0';
console.log(char);  // Output: ᷀

Java:

char c = '\u1DC0';
System.out.println(c);  // Output: ᷀

JSON:

{"text": "\u1DC0"}  // Value: ᷀

Python:

char = '\u1DC0'
print(char)  # Output: ᷀

Perl:

my $char = "\x{1DC0}";
print $char;  # Output: ᷀

PHP:

$char = "\x{1DC0}";
echo $char;  // Output: ᷀

Ruby:

char = "\u{1DC0}"
puts char  # Output: ᷀

Rust:

let c = '\u{1DC0}';
println!("{}", c);  // Output: ᷀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DC0";  /* Display: ᷀ */
}

HTML Decimal:

<p>HTML decimal: &#7616;</p>  <!-- Display: ᷀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DC0;</p>  <!-- Display: ᷀ -->

URL Encoding:

// ᷀ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%80

Encodings

MD5:

339a1329a141b94e3f09df96645c612f

SHA1:

ae0aa7c124a9cc7fdd149e4935c892ca941da139

Base64:

4beA