Unicode Finder

"ᮜ" U+1B9C(SUNDANESE LETTER LA)

U+1B9C
区块名称
Sundanese
名称
SUNDANESE LETTER LA

Programming

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

Web

CSS
\001B9C
HtmlDecimal
ᮜ
HtmlHexadecimal
ᮜ
Url
%E1%AE%9C

Code

MD5
6b294aa9b59db1801249ccc7111090d3
Sha1
7645ebd549b35609c0ae770aea8b0aa9dbc04f70
Base64
4a6c

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1B9C';
console.log(char);  // Output: ᮜ

Java:

char c = '\u1B9C';
System.out.println(c);  // Output: ᮜ

JSON:

{"text": "\u1B9C"}  // Value: ᮜ

Python:

char = '\u1B9C'
print(char)  # Output: ᮜ

Perl:

my $char = "\x{1B9C}";
print $char;  # Output: ᮜ

PHP:

$char = "\x{1B9C}";
echo $char;  // Output: ᮜ

Ruby:

char = "\u{1B9C}"
puts char  # Output: ᮜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7068;</p>  <!-- Display: ᮜ -->

HTML Hexadecimal:

<p>HTML hex: &#x1B9C;</p>  <!-- Display: ᮜ -->

URL Encoding:

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

Encodings

MD5:

6b294aa9b59db1801249ccc7111090d3

SHA1:

7645ebd549b35609c0ae770aea8b0aa9dbc04f70

Base64:

4a6c