Unicode Finder

"õ" U+00F5(LATIN SMALL LETTER O WITH TILDE)

õ
U+00F5
Block Name
Latin-1 Supplement
Name
LATIN SMALL LETTER O WITH TILDE

Programming

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

Web

CSS
\0000F5
HtmlDecimal
õ
HtmlHexadecimal
õ
Url
%C3%B5

Code

MD5
404c964f10299fd613bbb94cfc2e5860
Sha1
dfcc074efe5b4e93dd09ae7f356f1824a27e908a
Base64
w7U=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00F5';
console.log(char);  // Output: õ

Java:

char c = '\u00F5';
System.out.println(c);  // Output: õ

JSON:

{"text": "\u00F5"}  // Value: õ

Python:

char = '\u00F5'
print(char)  # Output: õ

Perl:

my $char = "\x{00F5}";
print $char;  # Output: õ

PHP:

$char = "\x{00F5}";
echo $char;  // Output: õ

Ruby:

char = "\u{00F5}"
puts char  # Output: õ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#245;</p>  <!-- Display: õ -->

HTML Hexadecimal:

<p>HTML hex: &#x00F5;</p>  <!-- Display: õ -->

URL Encoding:

// õ URL encoding
https://unicodefinder.com/search.php?query=%C3%B5

Encodings

MD5:

404c964f10299fd613bbb94cfc2e5860

SHA1:

dfcc074efe5b4e93dd09ae7f356f1824a27e908a

Base64:

w7U=