Unicode Finder

"̢" U+0322(COMBINING RETROFLEX HOOK BELOW)

̢
U+0322
Nama Blok
Combining Diacritical Marks
Nama
COMBINING RETROFLEX HOOK BELOW

Programming

C
\u0322
JavaScript
\u0322
Java
\u0322
Json
\u0322
Python
\u0322
Perl
\x{0322}
PHP
\x{0322}
Ruby
\u{0322}
Rust
\u{322}
Go
\u0322

Web

CSS
\000322
HtmlDecimal
̢
HtmlHexadecimal
̢
Url
%CC%A2

Code

MD5
ad13b185ca0251e6ef0b4165c379b3d1
Sha1
59d81e7c58eb89518bdba304bedc956068234249
Base64
zKI=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0322';
console.log(char);  // Output: ̢

Java:

char c = '\u0322';
System.out.println(c);  // Output: ̢

JSON:

{"text": "\u0322"}  // Value: ̢

Python:

char = '\u0322'
print(char)  # Output: ̢

Perl:

my $char = "\x{0322}";
print $char;  # Output: ̢

PHP:

$char = "\x{0322}";
echo $char;  // Output: ̢

Ruby:

char = "\u{0322}"
puts char  # Output: ̢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000322";  /* Display: ̢ */
}

HTML Decimal:

<p>HTML decimal: &#802;</p>  <!-- Display: ̢ -->

HTML Hexadecimal:

<p>HTML hex: &#x0322;</p>  <!-- Display: ̢ -->

URL Encoding:

// ̢ URL encoding
https://unicodefinder.com/search.php?query=%CC%A2

Encodings

MD5:

ad13b185ca0251e6ef0b4165c379b3d1

SHA1:

59d81e7c58eb89518bdba304bedc956068234249

Base64:

zKI=