Unicode Finder

"ᴎ" U+1D0E(LATIN LETTER SMALL CAPITAL REVERSED N)

U+1D0E
区块名称
Phonetic Extensions
名称
LATIN LETTER SMALL CAPITAL REVERSED N

Programming

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

Web

CSS
\001D0E
HtmlDecimal
ᴎ
HtmlHexadecimal
ᴎ
Url
%E1%B4%8E

Code

MD5
d5eca4f56a95b8911d7afac76a0504f4
Sha1
713a03f2353724c75d6616429debeb3cfd6fca41
Base64
4bSO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1D0E';
console.log(char);  // Output: ᴎ

Java:

char c = '\u1D0E';
System.out.println(c);  // Output: ᴎ

JSON:

{"text": "\u1D0E"}  // Value: ᴎ

Python:

char = '\u1D0E'
print(char)  # Output: ᴎ

Perl:

my $char = "\x{1D0E}";
print $char;  # Output: ᴎ

PHP:

$char = "\x{1D0E}";
echo $char;  // Output: ᴎ

Ruby:

char = "\u{1D0E}"
puts char  # Output: ᴎ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7438;</p>  <!-- Display: ᴎ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D0E;</p>  <!-- Display: ᴎ -->

URL Encoding:

// ᴎ URL encoding
https://unicodefinder.com/search.php?query=%E1%B4%8E

Encodings

MD5:

d5eca4f56a95b8911d7afac76a0504f4

SHA1:

713a03f2353724c75d6616429debeb3cfd6fca41

Base64:

4bSO