Unicode Finder

"᷃" U+1DC3(COMBINING SUSPENSION MARK)

U+1DC3
Nome del Blocco
Combining Diacritical Marks Supplement
Nome
COMBINING SUSPENSION MARK

Programming

C
\u1DC3
JavaScript
\u1DC3
Java
\u1DC3
Json
\u1DC3
Python
\u1DC3
Perl
\x{1DC3}
PHP
\x{1DC3}
Ruby
\u{1DC3}
Rust
\u{1DC3}
Go
\u1DC3

Web

CSS
\001DC3
HtmlDecimal
᷃
HtmlHexadecimal
᷃
Url
%E1%B7%83

Code

MD5
e2e61ddd928e59a0c357575c749dbb71
Sha1
bf4e02f8dfece4d9a7305026a1020f884df593d9
Base64
4beD

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1DC3';
console.log(char);  // Output: ᷃

Java:

char c = '\u1DC3';
System.out.println(c);  // Output: ᷃

JSON:

{"text": "\u1DC3"}  // Value: ᷃

Python:

char = '\u1DC3'
print(char)  # Output: ᷃

Perl:

my $char = "\x{1DC3}";
print $char;  # Output: ᷃

PHP:

$char = "\x{1DC3}";
echo $char;  // Output: ᷃

Ruby:

char = "\u{1DC3}"
puts char  # Output: ᷃

Rust:

let c = '\u{1DC3}';
println!("{}", c);  // Output: ᷃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DC3";  /* Display: ᷃ */
}

HTML Decimal:

<p>HTML decimal: &#7619;</p>  <!-- Display: ᷃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DC3;</p>  <!-- Display: ᷃ -->

URL Encoding:

// ᷃ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%83

Encodings

MD5:

e2e61ddd928e59a0c357575c749dbb71

SHA1:

bf4e02f8dfece4d9a7305026a1020f884df593d9

Base64:

4beD