Unicode Finder

"ᮾ" U+1BBE(SUNDANESE LETTER FINAL K)

U+1BBE
Nama Blok
Sundanese
Nama
SUNDANESE LETTER FINAL K

Programming

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

Web

CSS
\001BBE
HtmlDecimal
ᮾ
HtmlHexadecimal
ᮾ
Url
%E1%AE%BE

Code

MD5
d47a3d2de88207cbee6325563ad60938
Sha1
849f38989a5984dd00218d767da8ac7caf7b4318
Base64
4a6+

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1BBE';
console.log(char);  // Output: ᮾ

Java:

char c = '\u1BBE';
System.out.println(c);  // Output: ᮾ

JSON:

{"text": "\u1BBE"}  // Value: ᮾ

Python:

char = '\u1BBE'
print(char)  # Output: ᮾ

Perl:

my $char = "\x{1BBE}";
print $char;  # Output: ᮾ

PHP:

$char = "\x{1BBE}";
echo $char;  // Output: ᮾ

Ruby:

char = "\u{1BBE}"
puts char  # Output: ᮾ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7102;</p>  <!-- Display: ᮾ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BBE;</p>  <!-- Display: ᮾ -->

URL Encoding:

// ᮾ URL encoding
https://unicodefinder.com/search.php?query=%E1%AE%BE

Encodings

MD5:

d47a3d2de88207cbee6325563ad60938

SHA1:

849f38989a5984dd00218d767da8ac7caf7b4318

Base64:

4a6+