Unicode Finder

"ʉ" U+0289(LATIN SMALL LETTER U BAR)

ʉ
U+0289
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER U BAR

Programming

C
\u0289
JavaScript
\u0289
Java
\u0289
Json
\u0289
Python
\u0289
Perl
\x{0289}
PHP
\x{0289}
Ruby
\u{0289}
Rust
\u{289}
Go
\u0289

Web

CSS
\000289
HtmlDecimal
ʉ
HtmlHexadecimal
ʉ
Url
%CA%89

Code

MD5
1517f70b56febc5135d56d7655c29e68
Sha1
4a1d4ed6a814d363980985220e08bf3421689c32
Base64
yok=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0289';
console.log(char);  // Output: ʉ

Java:

char c = '\u0289';
System.out.println(c);  // Output: ʉ

JSON:

{"text": "\u0289"}  // Value: ʉ

Python:

char = '\u0289'
print(char)  # Output: ʉ

Perl:

my $char = "\x{0289}";
print $char;  # Output: ʉ

PHP:

$char = "\x{0289}";
echo $char;  // Output: ʉ

Ruby:

char = "\u{0289}"
puts char  # Output: ʉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000289";  /* Display: ʉ */
}

HTML Decimal:

<p>HTML decimal: &#649;</p>  <!-- Display: ʉ -->

HTML Hexadecimal:

<p>HTML hex: &#x0289;</p>  <!-- Display: ʉ -->

URL Encoding:

// ʉ URL encoding
https://unicodefinder.com/search.php?query=%CA%89

Encodings

MD5:

1517f70b56febc5135d56d7655c29e68

SHA1:

4a1d4ed6a814d363980985220e08bf3421689c32

Base64:

yok=