Unicode Finder

"ᵳ" U+1D73(LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE)

U+1D73
Nazwa Bloku
Phonetic Extensions
Nazwa
LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE

Programming

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

Web

CSS
\001D73
HtmlDecimal
ᵳ
HtmlHexadecimal
ᵳ
Url
%E1%B5%B3

Code

MD5
dcc435efb14a208b5e6de549d79e63ab
Sha1
9ced2d53eb70321e4a42b5934818c6913625563c
Base64
4bWz

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1D73';
console.log(char);  // Output: ᵳ

Java:

char c = '\u1D73';
System.out.println(c);  // Output: ᵳ

JSON:

{"text": "\u1D73"}  // Value: ᵳ

Python:

char = '\u1D73'
print(char)  # Output: ᵳ

Perl:

my $char = "\x{1D73}";
print $char;  # Output: ᵳ

PHP:

$char = "\x{1D73}";
echo $char;  // Output: ᵳ

Ruby:

char = "\u{1D73}"
puts char  # Output: ᵳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7539;</p>  <!-- Display: ᵳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D73;</p>  <!-- Display: ᵳ -->

URL Encoding:

// ᵳ URL encoding
https://unicodefinder.com/search.php?query=%E1%B5%B3

Encodings

MD5:

dcc435efb14a208b5e6de549d79e63ab

SHA1:

9ced2d53eb70321e4a42b5934818c6913625563c

Base64:

4bWz