Unicode Finder

"Ò" U+00D2(LATIN CAPITAL LETTER O WITH GRAVE)

Ò
U+00D2
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER O WITH GRAVE

Programming

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

Web

CSS
\0000D2
HtmlDecimal
Ò
HtmlHexadecimal
Ò
Url
%C3%92

Code

MD5
81e806d4ed7499dabe1eb857cc72ea00
Sha1
baee665eb3d14cf5c9e82b5f3e59f602191cd5c3
Base64
w5I=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00D2';
console.log(char);  // Output: Ò

Java:

char c = '\u00D2';
System.out.println(c);  // Output: Ò

JSON:

{"text": "\u00D2"}  // Value: Ò

Python:

char = '\u00D2'
print(char)  # Output: Ò

Perl:

my $char = "\x{00D2}";
print $char;  # Output: Ò

PHP:

$char = "\x{00D2}";
echo $char;  // Output: Ò

Ruby:

char = "\u{00D2}"
puts char  # Output: Ò

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#210;</p>  <!-- Display: Ò -->

HTML Hexadecimal:

<p>HTML hex: &#x00D2;</p>  <!-- Display: Ò -->

URL Encoding:

// Ò URL encoding
https://unicodefinder.com/search.php?query=%C3%92

Encodings

MD5:

81e806d4ed7499dabe1eb857cc72ea00

SHA1:

baee665eb3d14cf5c9e82b5f3e59f602191cd5c3

Base64:

w5I=