Unicode Finder

"ŏ" U+014F(LATIN SMALL LETTER O WITH BREVE)

ŏ
U+014F
Blok Adı
Latin Extended-A
Ad
LATIN SMALL LETTER O WITH BREVE

Programming

C
\u014F
JavaScript
\u014F
Java
\u014F
Json
\u014F
Python
\u014F
Perl
\x{014F}
PHP
\x{014F}
Ruby
\u{014F}
Rust
\u{14F}
Go
\u014F

Web

CSS
\00014F
HtmlDecimal
ŏ
HtmlHexadecimal
ŏ
Url
%C5%8F

Code

MD5
ee360c765de17951cb209a7801e5106d
Sha1
97f9f8c071774ba46cccf0d121b5a4cb8ce41ba9
Base64
xY8=

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u014F';
console.log(char);  // Output: ŏ

Java:

char c = '\u014F';
System.out.println(c);  // Output: ŏ

JSON:

{"text": "\u014F"}  // Value: ŏ

Python:

char = '\u014F'
print(char)  # Output: ŏ

Perl:

my $char = "\x{014F}";
print $char;  # Output: ŏ

PHP:

$char = "\x{014F}";
echo $char;  // Output: ŏ

Ruby:

char = "\u{014F}"
puts char  # Output: ŏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#335;</p>  <!-- Display: ŏ -->

HTML Hexadecimal:

<p>HTML hex: &#x014F;</p>  <!-- Display: ŏ -->

URL Encoding:

// ŏ URL encoding
https://unicodefinder.com/search.php?query=%C5%8F

Encodings

MD5:

ee360c765de17951cb209a7801e5106d

SHA1:

97f9f8c071774ba46cccf0d121b5a4cb8ce41ba9

Base64:

xY8=