Unicode Finder

"Ȯ" U+022E(LATIN CAPITAL LETTER O WITH DOT ABOVE)

Ȯ
U+022E
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER O WITH DOT ABOVE

Programming

C
\u022E
JavaScript
\u022E
Java
\u022E
Json
\u022E
Python
\u022E
Perl
\x{022E}
PHP
\x{022E}
Ruby
\u{022E}
Rust
\u{22E}
Go
\u022E

Web

CSS
\00022E
HtmlDecimal
Ȯ
HtmlHexadecimal
Ȯ
Url
%C8%AE

Code

MD5
7b2961ed6da378006c6ea532d6e5582f
Sha1
ddc94316809963d35cb554f21331f488ddfc393b
Base64
yK4=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u022E';
console.log(char);  // Output: Ȯ

Java:

char c = '\u022E';
System.out.println(c);  // Output: Ȯ

JSON:

{"text": "\u022E"}  // Value: Ȯ

Python:

char = '\u022E'
print(char)  # Output: Ȯ

Perl:

my $char = "\x{022E}";
print $char;  # Output: Ȯ

PHP:

$char = "\x{022E}";
echo $char;  // Output: Ȯ

Ruby:

char = "\u{022E}"
puts char  # Output: Ȯ

Rust:

let c = '\u{22E}';
println!("{}", c);  // Output: Ȯ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00022E";  /* Display: Ȯ */
}

HTML Decimal:

<p>HTML decimal: &#558;</p>  <!-- Display: Ȯ -->

HTML Hexadecimal:

<p>HTML hex: &#x022E;</p>  <!-- Display: Ȯ -->

URL Encoding:

// Ȯ URL encoding
https://unicodefinder.com/search.php?query=%C8%AE

Encodings

MD5:

7b2961ed6da378006c6ea532d6e5582f

SHA1:

ddc94316809963d35cb554f21331f488ddfc393b

Base64:

yK4=