Unicode Finder

"̣" U+0323(COMBINING DOT BELOW)

̣
U+0323
Blokknavn
Combining Diacritical Marks
Navn
COMBINING DOT BELOW

Programming

C
\u0323
JavaScript
\u0323
Java
\u0323
Json
\u0323
Python
\u0323
Perl
\x{0323}
PHP
\x{0323}
Ruby
\u{0323}
Rust
\u{323}
Go
\u0323

Web

CSS
\000323
HtmlDecimal
̣
HtmlHexadecimal
̣
Url
%CC%A3

Code

MD5
9c51e6b3c824a99f60cd58e6e996e2e2
Sha1
f5a8fdd0673819aa294294d94247c4372efe454a
Base64
zKM=

Brukseksempler

Programming Languages

C:

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

JavaScript:

const char = '\u0323';
console.log(char);  // Output: ̣

Java:

char c = '\u0323';
System.out.println(c);  // Output: ̣

JSON:

{"text": "\u0323"}  // Value: ̣

Python:

char = '\u0323'
print(char)  # Output: ̣

Perl:

my $char = "\x{0323}";
print $char;  # Output: ̣

PHP:

$char = "\x{0323}";
echo $char;  // Output: ̣

Ruby:

char = "\u{0323}"
puts char  # Output: ̣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000323";  /* Display: ̣ */
}

HTML Decimal:

<p>HTML decimal: &#803;</p>  <!-- Display: ̣ -->

HTML Hexadecimal:

<p>HTML hex: &#x0323;</p>  <!-- Display: ̣ -->

URL Encoding:

// ̣ URL encoding
https://unicodefinder.com/search.php?query=%CC%A3

Encodings

MD5:

9c51e6b3c824a99f60cd58e6e996e2e2

SHA1:

f5a8fdd0673819aa294294d94247c4372efe454a

Base64:

zKM=