Unicode Finder

"ᴟ" U+1D1F(LATIN SMALL LETTER SIDEWAYS TURNED M)

U+1D1F
Nazwa Bloku
Phonetic Extensions
Nazwa
LATIN SMALL LETTER SIDEWAYS TURNED M

Programming

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

Web

CSS
\001D1F
HtmlDecimal
ᴟ
HtmlHexadecimal
ᴟ
Url
%E1%B4%9F

Code

MD5
6e6e8a92463d44be94584b939aa00fe7
Sha1
3e00ac63f6d8018a9416d7b4a4a98d0b447f984e
Base64
4bSf

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D1F';
console.log(char);  // Output: ᴟ

Java:

char c = '\u1D1F';
System.out.println(c);  // Output: ᴟ

JSON:

{"text": "\u1D1F"}  // Value: ᴟ

Python:

char = '\u1D1F'
print(char)  # Output: ᴟ

Perl:

my $char = "\x{1D1F}";
print $char;  # Output: ᴟ

PHP:

$char = "\x{1D1F}";
echo $char;  // Output: ᴟ

Ruby:

char = "\u{1D1F}"
puts char  # Output: ᴟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7455;</p>  <!-- Display: ᴟ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D1F;</p>  <!-- Display: ᴟ -->

URL Encoding:

// ᴟ URL encoding
https://unicodefinder.com/search.php?query=%E1%B4%9F

Encodings

MD5:

6e6e8a92463d44be94584b939aa00fe7

SHA1:

3e00ac63f6d8018a9416d7b4a4a98d0b447f984e

Base64:

4bSf