Unicode Finder

"ᷭ" U+1DED(COMBINING LATIN SMALL LETTER O WITH LIGHT CENTRALIZATION STROKE)

U+1DED
Nome del Blocco
Combining Diacritical Marks Supplement
Nome
COMBINING LATIN SMALL LETTER O WITH LIGHT CENTRALIZATION STROKE

Programming

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

Web

CSS
\001DED
HtmlDecimal
ᷭ
HtmlHexadecimal
ᷭ
Url
%E1%B7%AD

Code

MD5
50cc0286e7df5f16bbcb94a97507e9aa
Sha1
29bac53185f66d54fbb079a3eeac9e7ef3ac1cf5
Base64
4bet

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1DED';
console.log(char);  // Output: ᷭ

Java:

char c = '\u1DED';
System.out.println(c);  // Output: ᷭ

JSON:

{"text": "\u1DED"}  // Value: ᷭ

Python:

char = '\u1DED'
print(char)  # Output: ᷭ

Perl:

my $char = "\x{1DED}";
print $char;  # Output: ᷭ

PHP:

$char = "\x{1DED}";
echo $char;  // Output: ᷭ

Ruby:

char = "\u{1DED}"
puts char  # Output: ᷭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7661;</p>  <!-- Display: ᷭ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DED;</p>  <!-- Display: ᷭ -->

URL Encoding:

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

Encodings

MD5:

50cc0286e7df5f16bbcb94a97507e9aa

SHA1:

29bac53185f66d54fbb079a3eeac9e7ef3ac1cf5

Base64:

4bet