Unicode Finder

"Ý" U+00DD(LATIN CAPITAL LETTER Y WITH ACUTE)

Ý
U+00DD
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER Y WITH ACUTE

Programming

C
\u00DD
JavaScript
\u00DD
Java
\u00DD
Json
\u00DD
Python
\u00DD
Perl
\x{00DD}
PHP
\x{00DD}
Ruby
\u{00DD}
Rust
\u{DD}
Go
\u00DD

Web

CSS
\0000DD
HtmlDecimal
Ý
HtmlHexadecimal
Ý
Url
%C3%9D

Code

MD5
a30878a7fdb6a94348fce16d362edb11
Sha1
a181b866a4c8c24f87de90e22b79232c856d9410
Base64
w50=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00DD';
console.log(char);  // Output: Ý

Java:

char c = '\u00DD';
System.out.println(c);  // Output: Ý

JSON:

{"text": "\u00DD"}  // Value: Ý

Python:

char = '\u00DD'
print(char)  # Output: Ý

Perl:

my $char = "\x{00DD}";
print $char;  # Output: Ý

PHP:

$char = "\x{00DD}";
echo $char;  // Output: Ý

Ruby:

char = "\u{00DD}"
puts char  # Output: Ý

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000DD";  /* Display: Ý */
}

HTML Decimal:

<p>HTML decimal: &#221;</p>  <!-- Display: Ý -->

HTML Hexadecimal:

<p>HTML hex: &#x00DD;</p>  <!-- Display: Ý -->

URL Encoding:

// Ý URL encoding
https://unicodefinder.com/search.php?query=%C3%9D

Encodings

MD5:

a30878a7fdb6a94348fce16d362edb11

SHA1:

a181b866a4c8c24f87de90e22b79232c856d9410

Base64:

w50=