Unicode Finder

"̝" U+031D(COMBINING UP TACK BELOW)

̝
U+031D
Nazwa Bloku
Combining Diacritical Marks
Nazwa
COMBINING UP TACK BELOW

Programming

C
\u031D
JavaScript
\u031D
Java
\u031D
Json
\u031D
Python
\u031D
Perl
\x{031D}
PHP
\x{031D}
Ruby
\u{031D}
Rust
\u{31D}
Go
\u031D

Web

CSS
\00031D
HtmlDecimal
̝
HtmlHexadecimal
̝
Url
%CC%9D

Code

MD5
d5eae8477204079a8952beab8d32fcd9
Sha1
ecde703ba37f71c2380ae8b2c5a252eef9b43f48
Base64
zJ0=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u031D';
console.log(char);  // Output: ̝

Java:

char c = '\u031D';
System.out.println(c);  // Output: ̝

JSON:

{"text": "\u031D"}  // Value: ̝

Python:

char = '\u031D'
print(char)  # Output: ̝

Perl:

my $char = "\x{031D}";
print $char;  # Output: ̝

PHP:

$char = "\x{031D}";
echo $char;  // Output: ̝

Ruby:

char = "\u{031D}"
puts char  # Output: ̝

Rust:

let c = '\u{31D}';
println!("{}", c);  // Output: ̝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00031D";  /* Display: ̝ */
}

HTML Decimal:

<p>HTML decimal: &#797;</p>  <!-- Display: ̝ -->

HTML Hexadecimal:

<p>HTML hex: &#x031D;</p>  <!-- Display: ̝ -->

URL Encoding:

// ̝ URL encoding
https://unicodefinder.com/search.php?query=%CC%9D

Encodings

MD5:

d5eae8477204079a8952beab8d32fcd9

SHA1:

ecde703ba37f71c2380ae8b2c5a252eef9b43f48

Base64:

zJ0=