Unicode Finder

"ᷮ" U+1DEE(COMBINING LATIN SMALL LETTER P)

U+1DEE
Bloknaam
Combining Diacritical Marks Supplement
Naam
COMBINING LATIN SMALL LETTER P

Programming

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

Web

CSS
\001DEE
HtmlDecimal
ᷮ
HtmlHexadecimal
ᷮ
Url
%E1%B7%AE

Code

MD5
20c4d96239e2f51fe25fb8a3378348b0
Sha1
1bddf2d8ff090b6c382a3289f12f10e7df1468a3
Base64
4beu

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1DEE';
console.log(char);  // Output: ᷮ

Java:

char c = '\u1DEE';
System.out.println(c);  // Output: ᷮ

JSON:

{"text": "\u1DEE"}  // Value: ᷮ

Python:

char = '\u1DEE'
print(char)  # Output: ᷮ

Perl:

my $char = "\x{1DEE}";
print $char;  # Output: ᷮ

PHP:

$char = "\x{1DEE}";
echo $char;  // Output: ᷮ

Ruby:

char = "\u{1DEE}"
puts char  # Output: ᷮ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7662;</p>  <!-- Display: ᷮ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DEE;</p>  <!-- Display: ᷮ -->

URL Encoding:

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

Encodings

MD5:

20c4d96239e2f51fe25fb8a3378348b0

SHA1:

1bddf2d8ff090b6c382a3289f12f10e7df1468a3

Base64:

4beu