Unicode Finder

"̖" U+0316(COMBINING GRAVE ACCENT BELOW)

̖
U+0316
Nama Blok
Combining Diacritical Marks
Nama
COMBINING GRAVE ACCENT BELOW

Programming

C
\u0316
JavaScript
\u0316
Java
\u0316
Json
\u0316
Python
\u0316
Perl
\x{0316}
PHP
\x{0316}
Ruby
\u{0316}
Rust
\u{316}
Go
\u0316

Web

CSS
\000316
HtmlDecimal
̖
HtmlHexadecimal
̖
Url
%CC%96

Code

MD5
2875a6840c16063b8089b12acdba6228
Sha1
41cecd5a337deffcfbd7526c00b4606f04c68157
Base64
zJY=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0316';
console.log(char);  // Output: ̖

Java:

char c = '\u0316';
System.out.println(c);  // Output: ̖

JSON:

{"text": "\u0316"}  // Value: ̖

Python:

char = '\u0316'
print(char)  # Output: ̖

Perl:

my $char = "\x{0316}";
print $char;  # Output: ̖

PHP:

$char = "\x{0316}";
echo $char;  // Output: ̖

Ruby:

char = "\u{0316}"
puts char  # Output: ̖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000316";  /* Display: ̖ */
}

HTML Decimal:

<p>HTML decimal: &#790;</p>  <!-- Display: ̖ -->

HTML Hexadecimal:

<p>HTML hex: &#x0316;</p>  <!-- Display: ̖ -->

URL Encoding:

// ̖ URL encoding
https://unicodefinder.com/search.php?query=%CC%96

Encodings

MD5:

2875a6840c16063b8089b12acdba6228

SHA1:

41cecd5a337deffcfbd7526c00b4606f04c68157

Base64:

zJY=