Unicode Finder

"Ȍ" U+020C(LATIN CAPITAL LETTER O WITH DOUBLE GRAVE)

Ȍ
U+020C
Tên Khối
Latin Extended-B
Tên
LATIN CAPITAL LETTER O WITH DOUBLE GRAVE

Programming

C
\u020C
JavaScript
\u020C
Java
\u020C
Json
\u020C
Python
\u020C
Perl
\x{020C}
PHP
\x{020C}
Ruby
\u{020C}
Rust
\u{20C}
Go
\u020C

Web

CSS
\00020C
HtmlDecimal
Ȍ
HtmlHexadecimal
Ȍ
Url
%C8%8C

Code

MD5
8aecaa1ed1a5f6c1b90fa0a6b5019266
Sha1
43ba7fa6551c10d54e531cf9abcec9a68e8cc2c1
Base64
yIw=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u020C';
console.log(char);  // Output: Ȍ

Java:

char c = '\u020C';
System.out.println(c);  // Output: Ȍ

JSON:

{"text": "\u020C"}  // Value: Ȍ

Python:

char = '\u020C'
print(char)  # Output: Ȍ

Perl:

my $char = "\x{020C}";
print $char;  # Output: Ȍ

PHP:

$char = "\x{020C}";
echo $char;  // Output: Ȍ

Ruby:

char = "\u{020C}"
puts char  # Output: Ȍ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#524;</p>  <!-- Display: Ȍ -->

HTML Hexadecimal:

<p>HTML hex: &#x020C;</p>  <!-- Display: Ȍ -->

URL Encoding:

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

Encodings

MD5:

8aecaa1ed1a5f6c1b90fa0a6b5019266

SHA1:

43ba7fa6551c10d54e531cf9abcec9a68e8cc2c1

Base64:

yIw=