Unicode Finder

"᷾" U+1DFE(COMBINING LEFT ARROWHEAD ABOVE)

U+1DFE
Nome del Blocco
Combining Diacritical Marks Supplement
Nome
COMBINING LEFT ARROWHEAD ABOVE

Programming

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

Web

CSS
\001DFE
HtmlDecimal
᷾
HtmlHexadecimal
᷾
Url
%E1%B7%BE

Code

MD5
bc050acc544bff1d526467d903d4e1ca
Sha1
d28a01bb76f765ded71314263e733ac97cf9dc87
Base64
4be+

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1DFE';
console.log(char);  // Output: ᷾

Java:

char c = '\u1DFE';
System.out.println(c);  // Output: ᷾

JSON:

{"text": "\u1DFE"}  // Value: ᷾

Python:

char = '\u1DFE'
print(char)  # Output: ᷾

Perl:

my $char = "\x{1DFE}";
print $char;  # Output: ᷾

PHP:

$char = "\x{1DFE}";
echo $char;  // Output: ᷾

Ruby:

char = "\u{1DFE}"
puts char  # Output: ᷾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7678;</p>  <!-- Display: ᷾ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DFE;</p>  <!-- Display: ᷾ -->

URL Encoding:

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

Encodings

MD5:

bc050acc544bff1d526467d903d4e1ca

SHA1:

d28a01bb76f765ded71314263e733ac97cf9dc87

Base64:

4be+