Unicode Finder

"ý" U+00FD(LATIN SMALL LETTER Y WITH ACUTE)

ý
U+00FD
Block Name
Latin-1 Supplement
Name
LATIN SMALL LETTER Y WITH ACUTE

Programming

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

Web

CSS
\0000FD
HtmlDecimal
ý
HtmlHexadecimal
ý
Url
%C3%BD

Code

MD5
a30287a07fb7538ad4807d28e9461f98
Sha1
28f934fd2d99793bbe802c5f8bf1be07dfee3021
Base64
w70=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00FD';
console.log(char);  // Output: ý

Java:

char c = '\u00FD';
System.out.println(c);  // Output: ý

JSON:

{"text": "\u00FD"}  // Value: ý

Python:

char = '\u00FD'
print(char)  # Output: ý

Perl:

my $char = "\x{00FD}";
print $char;  # Output: ý

PHP:

$char = "\x{00FD}";
echo $char;  // Output: ý

Ruby:

char = "\u{00FD}"
puts char  # Output: ý

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#253;</p>  <!-- Display: ý -->

HTML Hexadecimal:

<p>HTML hex: &#x00FD;</p>  <!-- Display: ý -->

URL Encoding:

// ý URL encoding
https://unicodefinder.com/search.php?query=%C3%BD

Encodings

MD5:

a30287a07fb7538ad4807d28e9461f98

SHA1:

28f934fd2d99793bbe802c5f8bf1be07dfee3021

Base64:

w70=