Unicode Finder

"ͬ" U+036C(COMBINING LATIN SMALL LETTER R)

ͬ
U+036C
Nume Bloc
Combining Diacritical Marks
Nume
COMBINING LATIN SMALL LETTER R

Programming

C
\u036C
JavaScript
\u036C
Java
\u036C
Json
\u036C
Python
\u036C
Perl
\x{036C}
PHP
\x{036C}
Ruby
\u{036C}
Rust
\u{36C}
Go
\u036C

Web

CSS
\00036C
HtmlDecimal
ͬ
HtmlHexadecimal
ͬ
Url
%CD%AC

Code

MD5
4c086c3e7759ee7d905e4f020a0669d3
Sha1
5bd1972de0c049fa58a301e8f9f6deb071128ed2
Base64
zaw=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u036C';
console.log(char);  // Output: ͬ

Java:

char c = '\u036C';
System.out.println(c);  // Output: ͬ

JSON:

{"text": "\u036C"}  // Value: ͬ

Python:

char = '\u036C'
print(char)  # Output: ͬ

Perl:

my $char = "\x{036C}";
print $char;  # Output: ͬ

PHP:

$char = "\x{036C}";
echo $char;  // Output: ͬ

Ruby:

char = "\u{036C}"
puts char  # Output: ͬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#876;</p>  <!-- Display: ͬ -->

HTML Hexadecimal:

<p>HTML hex: &#x036C;</p>  <!-- Display: ͬ -->

URL Encoding:

// ͬ URL encoding
https://unicodefinder.com/search.php?query=%CD%AC

Encodings

MD5:

4c086c3e7759ee7d905e4f020a0669d3

SHA1:

5bd1972de0c049fa58a301e8f9f6deb071128ed2

Base64:

zaw=