Unicode Finder

"Ũ" U+0168(LATIN CAPITAL LETTER U WITH TILDE)

Ũ
U+0168
Nume Bloc
Latin Extended-A
Nume
LATIN CAPITAL LETTER U WITH TILDE

Programming

C
\u0168
JavaScript
\u0168
Java
\u0168
Json
\u0168
Python
\u0168
Perl
\x{0168}
PHP
\x{0168}
Ruby
\u{0168}
Rust
\u{168}
Go
\u0168

Web

CSS
\000168
HtmlDecimal
Ũ
HtmlHexadecimal
Ũ
Url
%C5%A8

Code

MD5
0e36aa3b9909c13c4ffac931a35d54f3
Sha1
a3d6bde850e984cafc9ad99a68e8ce104ceb43fc
Base64
xag=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0168';
console.log(char);  // Output: Ũ

Java:

char c = '\u0168';
System.out.println(c);  // Output: Ũ

JSON:

{"text": "\u0168"}  // Value: Ũ

Python:

char = '\u0168'
print(char)  # Output: Ũ

Perl:

my $char = "\x{0168}";
print $char;  # Output: Ũ

PHP:

$char = "\x{0168}";
echo $char;  // Output: Ũ

Ruby:

char = "\u{0168}"
puts char  # Output: Ũ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000168";  /* Display: Ũ */
}

HTML Decimal:

<p>HTML decimal: &#360;</p>  <!-- Display: Ũ -->

HTML Hexadecimal:

<p>HTML hex: &#x0168;</p>  <!-- Display: Ũ -->

URL Encoding:

// Ũ URL encoding
https://unicodefinder.com/search.php?query=%C5%A8

Encodings

MD5:

0e36aa3b9909c13c4ffac931a35d54f3

SHA1:

a3d6bde850e984cafc9ad99a68e8ce104ceb43fc

Base64:

xag=