Unicode Finder

"ᴜ" U+1D1C(LATIN LETTER SMALL CAPITAL U)

U+1D1C
区块名称
Phonetic Extensions
名称
LATIN LETTER SMALL CAPITAL U

Programming

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

Web

CSS
\001D1C
HtmlDecimal
ᴜ
HtmlHexadecimal
ᴜ
Url
%E1%B4%9C

Code

MD5
334238dffae8346ec5c7919b580b31b4
Sha1
2b5bd72eeff946a171b19c3cdfbebebd70dce4a3
Base64
4bSc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1D1C';
console.log(char);  // Output: ᴜ

Java:

char c = '\u1D1C';
System.out.println(c);  // Output: ᴜ

JSON:

{"text": "\u1D1C"}  // Value: ᴜ

Python:

char = '\u1D1C'
print(char)  # Output: ᴜ

Perl:

my $char = "\x{1D1C}";
print $char;  # Output: ᴜ

PHP:

$char = "\x{1D1C}";
echo $char;  // Output: ᴜ

Ruby:

char = "\u{1D1C}"
puts char  # Output: ᴜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7452;</p>  <!-- Display: ᴜ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D1C;</p>  <!-- Display: ᴜ -->

URL Encoding:

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

Encodings

MD5:

334238dffae8346ec5c7919b580b31b4

SHA1:

2b5bd72eeff946a171b19c3cdfbebebd70dce4a3

Base64:

4bSc