Unicode Finder

"ȣ" U+0223(LATIN SMALL LETTER OU)

ȣ
U+0223
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER OU

Programming

C
\u0223
JavaScript
\u0223
Java
\u0223
Json
\u0223
Python
\u0223
Perl
\x{0223}
PHP
\x{0223}
Ruby
\u{0223}
Rust
\u{223}
Go
\u0223

Web

CSS
\000223
HtmlDecimal
ȣ
HtmlHexadecimal
ȣ
Url
%C8%A3

Code

MD5
4ab554c1358e3ea6fb2c47e2d1ea38f2
Sha1
ea005eed3a358de8d5a454f28af3ad3e51ff3026
Base64
yKM=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0223';
console.log(char);  // Output: ȣ

Java:

char c = '\u0223';
System.out.println(c);  // Output: ȣ

JSON:

{"text": "\u0223"}  // Value: ȣ

Python:

char = '\u0223'
print(char)  # Output: ȣ

Perl:

my $char = "\x{0223}";
print $char;  # Output: ȣ

PHP:

$char = "\x{0223}";
echo $char;  // Output: ȣ

Ruby:

char = "\u{0223}"
puts char  # Output: ȣ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000223";  /* Display: ȣ */
}

HTML Decimal:

<p>HTML decimal: &#547;</p>  <!-- Display: ȣ -->

HTML Hexadecimal:

<p>HTML hex: &#x0223;</p>  <!-- Display: ȣ -->

URL Encoding:

// ȣ URL encoding
https://unicodefinder.com/search.php?query=%C8%A3

Encodings

MD5:

4ab554c1358e3ea6fb2c47e2d1ea38f2

SHA1:

ea005eed3a358de8d5a454f28af3ad3e51ff3026

Base64:

yKM=