Unicode Finder

"ȳ" U+0233(LATIN SMALL LETTER Y WITH MACRON)

ȳ
U+0233
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER Y WITH MACRON

Programming

C
\u0233
JavaScript
\u0233
Java
\u0233
Json
\u0233
Python
\u0233
Perl
\x{0233}
PHP
\x{0233}
Ruby
\u{0233}
Rust
\u{233}
Go
\u0233

Web

CSS
\000233
HtmlDecimal
ȳ
HtmlHexadecimal
ȳ
Url
%C8%B3

Code

MD5
af603006881bcecaf4a292faea9420b0
Sha1
75804ff50f498bceaf3f03ba43f7e0baf873262b
Base64
yLM=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0233';
console.log(char);  // Output: ȳ

Java:

char c = '\u0233';
System.out.println(c);  // Output: ȳ

JSON:

{"text": "\u0233"}  // Value: ȳ

Python:

char = '\u0233'
print(char)  # Output: ȳ

Perl:

my $char = "\x{0233}";
print $char;  # Output: ȳ

PHP:

$char = "\x{0233}";
echo $char;  // Output: ȳ

Ruby:

char = "\u{0233}"
puts char  # Output: ȳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000233";  /* Display: ȳ */
}

HTML Decimal:

<p>HTML decimal: &#563;</p>  <!-- Display: ȳ -->

HTML Hexadecimal:

<p>HTML hex: &#x0233;</p>  <!-- Display: ȳ -->

URL Encoding:

// ȳ URL encoding
https://unicodefinder.com/search.php?query=%C8%B3

Encodings

MD5:

af603006881bcecaf4a292faea9420b0

SHA1:

75804ff50f498bceaf3f03ba43f7e0baf873262b

Base64:

yLM=