Unicode Finder

"̤" U+0324(COMBINING DIAERESIS BELOW)

̤
U+0324
Blok Adı
Combining Diacritical Marks
Ad
COMBINING DIAERESIS BELOW

Programming

C
\u0324
JavaScript
\u0324
Java
\u0324
Json
\u0324
Python
\u0324
Perl
\x{0324}
PHP
\x{0324}
Ruby
\u{0324}
Rust
\u{324}
Go
\u0324

Web

CSS
\000324
HtmlDecimal
̤
HtmlHexadecimal
̤
Url
%CC%A4

Code

MD5
7b7f6e0282b96b34d118b3fdd033293b
Sha1
d4cb6fd61d4460d84e4b343b363260cd06acc7bf
Base64
zKQ=

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u0324';
console.log(char);  // Output: ̤

Java:

char c = '\u0324';
System.out.println(c);  // Output: ̤

JSON:

{"text": "\u0324"}  // Value: ̤

Python:

char = '\u0324'
print(char)  # Output: ̤

Perl:

my $char = "\x{0324}";
print $char;  # Output: ̤

PHP:

$char = "\x{0324}";
echo $char;  // Output: ̤

Ruby:

char = "\u{0324}"
puts char  # Output: ̤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000324";  /* Display: ̤ */
}

HTML Decimal:

<p>HTML decimal: &#804;</p>  <!-- Display: ̤ -->

HTML Hexadecimal:

<p>HTML hex: &#x0324;</p>  <!-- Display: ̤ -->

URL Encoding:

// ̤ URL encoding
https://unicodefinder.com/search.php?query=%CC%A4

Encodings

MD5:

7b7f6e0282b96b34d118b3fdd033293b

SHA1:

d4cb6fd61d4460d84e4b343b363260cd06acc7bf

Base64:

zKQ=