Unicode Finder

"ȯ" U+022F(LATIN SMALL LETTER O WITH DOT ABOVE)

ȯ
U+022F
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER O WITH DOT ABOVE

Programming

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

Web

CSS
\00022F
HtmlDecimal
ȯ
HtmlHexadecimal
ȯ
Url
%C8%AF

Code

MD5
d917478c173e58a7e50c6e947ddb121a
Sha1
b56f15135186511b6e6fd561a57843a40bea6538
Base64
yK8=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u022F';
console.log(char);  // Output: ȯ

Java:

char c = '\u022F';
System.out.println(c);  // Output: ȯ

JSON:

{"text": "\u022F"}  // Value: ȯ

Python:

char = '\u022F'
print(char)  # Output: ȯ

Perl:

my $char = "\x{022F}";
print $char;  # Output: ȯ

PHP:

$char = "\x{022F}";
echo $char;  // Output: ȯ

Ruby:

char = "\u{022F}"
puts char  # Output: ȯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#559;</p>  <!-- Display: ȯ -->

HTML Hexadecimal:

<p>HTML hex: &#x022F;</p>  <!-- Display: ȯ -->

URL Encoding:

// ȯ URL encoding
https://unicodefinder.com/search.php?query=%C8%AF

Encodings

MD5:

d917478c173e58a7e50c6e947ddb121a

SHA1:

b56f15135186511b6e6fd561a57843a40bea6538

Base64:

yK8=