Unicode Finder

"Đ" U+0110(LATIN CAPITAL LETTER D WITH STROKE)

Đ
U+0110
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER D WITH STROKE

Programming

C
\u0110
JavaScript
\u0110
Java
\u0110
Json
\u0110
Python
\u0110
Perl
\x{0110}
PHP
\x{0110}
Ruby
\u{0110}
Rust
\u{110}
Go
\u0110

Web

CSS
\000110
HtmlDecimal
Đ
HtmlHexadecimal
Đ
Url
%C4%90

Code

MD5
58c473f84477cc227d89b3942fd55ecb
Sha1
e1191b5206ebba999100013c567b352ad98083a2
Base64
xJA=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0110';
console.log(char);  // Output: Đ

Java:

char c = '\u0110';
System.out.println(c);  // Output: Đ

JSON:

{"text": "\u0110"}  // Value: Đ

Python:

char = '\u0110'
print(char)  # Output: Đ

Perl:

my $char = "\x{0110}";
print $char;  # Output: Đ

PHP:

$char = "\x{0110}";
echo $char;  // Output: Đ

Ruby:

char = "\u{0110}"
puts char  # Output: Đ

Rust:

let c = '\u{110}';
println!("{}", c);  // Output: Đ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000110";  /* Display: Đ */
}

HTML Decimal:

<p>HTML decimal: &#272;</p>  <!-- Display: Đ -->

HTML Hexadecimal:

<p>HTML hex: &#x0110;</p>  <!-- Display: Đ -->

URL Encoding:

// Đ URL encoding
https://unicodefinder.com/search.php?query=%C4%90

Encodings

MD5:

58c473f84477cc227d89b3942fd55ecb

SHA1:

e1191b5206ebba999100013c567b352ad98083a2

Base64:

xJA=