Unicode Finder

"Ꝇ" U+A746(LATIN CAPITAL LETTER BROKEN L)

U+A746
ブロック名
Latin Extended-D
名前
LATIN CAPITAL LETTER BROKEN L

Programming

C
\uA746
JavaScript
\uA746
Java
\uA746
Json
\uA746
Python
\uA746
Perl
\x{A746}
PHP
\x{A746}
Ruby
\u{A746}
Rust
\u{A746}
Go
\uA746

Web

CSS
\00A746
HtmlDecimal
Ꝇ
HtmlHexadecimal
Ꝇ
Url
%EA%9D%86

Code

MD5
de36db181d1828dc0d61ace4a370b69e
Sha1
7d590038f3214229cad6e790bc89a71275f0d62e
Base64
6p2G

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA746';
console.log(char);  // Output: Ꝇ

Java:

char c = '\uA746';
System.out.println(c);  // Output: Ꝇ

JSON:

{"text": "\uA746"}  // Value: Ꝇ

Python:

char = '\uA746'
print(char)  # Output: Ꝇ

Perl:

my $char = "\x{A746}";
print $char;  # Output: Ꝇ

PHP:

$char = "\x{A746}";
echo $char;  // Output: Ꝇ

Ruby:

char = "\u{A746}"
puts char  # Output: Ꝇ

Rust:

let c = '\u{A746}';
println!("{}", c);  // Output: Ꝇ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00A746";  /* Display: Ꝇ */
}

HTML Decimal:

<p>HTML decimal: &#42822;</p>  <!-- Display: Ꝇ -->

HTML Hexadecimal:

<p>HTML hex: &#xA746;</p>  <!-- Display: Ꝇ -->

URL Encoding:

// Ꝇ URL encoding
https://unicodefinder.com/search.php?query=%EA%9D%86

Encodings

MD5:

de36db181d1828dc0d61ace4a370b69e

SHA1:

7d590038f3214229cad6e790bc89a71275f0d62e

Base64:

6p2G