Unicode Finder

"Ď" U+010E(LATIN CAPITAL LETTER D WITH CARON)

Ď
U+010E
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER D WITH CARON

Programming

C
\u010E
JavaScript
\u010E
Java
\u010E
Json
\u010E
Python
\u010E
Perl
\x{010E}
PHP
\x{010E}
Ruby
\u{010E}
Rust
\u{10E}
Go
\u010E

Web

CSS
\00010E
HtmlDecimal
Ď
HtmlHexadecimal
Ď
Url
%C4%8E

Code

MD5
44adbd18a0b2ece97ad4b7486ebd2dd5
Sha1
c2f3e028f48762c865fb2922ad11df4d7da24b1c
Base64
xI4=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u010E';
console.log(char);  // Output: Ď

Java:

char c = '\u010E';
System.out.println(c);  // Output: Ď

JSON:

{"text": "\u010E"}  // Value: Ď

Python:

char = '\u010E'
print(char)  # Output: Ď

Perl:

my $char = "\x{010E}";
print $char;  # Output: Ď

PHP:

$char = "\x{010E}";
echo $char;  // Output: Ď

Ruby:

char = "\u{010E}"
puts char  # Output: Ď

Rust:

let c = '\u{10E}';
println!("{}", c);  // Output: Ď

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00010E";  /* Display: Ď */
}

HTML Decimal:

<p>HTML decimal: &#270;</p>  <!-- Display: Ď -->

HTML Hexadecimal:

<p>HTML hex: &#x010E;</p>  <!-- Display: Ď -->

URL Encoding:

// Ď URL encoding
https://unicodefinder.com/search.php?query=%C4%8E

Encodings

MD5:

44adbd18a0b2ece97ad4b7486ebd2dd5

SHA1:

c2f3e028f48762c865fb2922ad11df4d7da24b1c

Base64:

xI4=