Unicode Finder

"Ō" U+014C(LATIN CAPITAL LETTER O WITH MACRON)

Ō
U+014C
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER O WITH MACRON

Programming

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

Web

CSS
\00014C
HtmlDecimal
Ō
HtmlHexadecimal
Ō
Url
%C5%8C

Code

MD5
d206e478fa234060834b13e3efebaf72
Sha1
423377da87d5f607f128083b076b9f56969f5c60
Base64
xYw=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u014C';
console.log(char);  // Output: Ō

Java:

char c = '\u014C';
System.out.println(c);  // Output: Ō

JSON:

{"text": "\u014C"}  // Value: Ō

Python:

char = '\u014C'
print(char)  # Output: Ō

Perl:

my $char = "\x{014C}";
print $char;  # Output: Ō

PHP:

$char = "\x{014C}";
echo $char;  // Output: Ō

Ruby:

char = "\u{014C}"
puts char  # Output: Ō

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#332;</p>  <!-- Display: Ō -->

HTML Hexadecimal:

<p>HTML hex: &#x014C;</p>  <!-- Display: Ō -->

URL Encoding:

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

Encodings

MD5:

d206e478fa234060834b13e3efebaf72

SHA1:

423377da87d5f607f128083b076b9f56969f5c60

Base64:

xYw=