Unicode Finder

"ᴧ" U+1D27(GREEK LETTER SMALL CAPITAL LAMDA)

U+1D27
ブロック名
Phonetic Extensions
名前
GREEK LETTER SMALL CAPITAL LAMDA

Programming

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

Web

CSS
\001D27
HtmlDecimal
ᴧ
HtmlHexadecimal
ᴧ
Url
%E1%B4%A7

Code

MD5
e44fada47314b678d1563e437c2d8b9e
Sha1
4958f4093b3ec1eda62cc63bd2e33ca5d69ea8d1
Base64
4bSn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1D27';
console.log(char);  // Output: ᴧ

Java:

char c = '\u1D27';
System.out.println(c);  // Output: ᴧ

JSON:

{"text": "\u1D27"}  // Value: ᴧ

Python:

char = '\u1D27'
print(char)  # Output: ᴧ

Perl:

my $char = "\x{1D27}";
print $char;  # Output: ᴧ

PHP:

$char = "\x{1D27}";
echo $char;  // Output: ᴧ

Ruby:

char = "\u{1D27}"
puts char  # Output: ᴧ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7463;</p>  <!-- Display: ᴧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D27;</p>  <!-- Display: ᴧ -->

URL Encoding:

// ᴧ URL encoding
https://unicodefinder.com/search.php?query=%E1%B4%A7

Encodings

MD5:

e44fada47314b678d1563e437c2d8b9e

SHA1:

4958f4093b3ec1eda62cc63bd2e33ca5d69ea8d1

Base64:

4bSn