Unicode Finder

"ᦽ" U+19BD(NEW TAI LUE VOWEL SIGN OY)

U+19BD
Nazwa Bloku
New Tai Lue
Nazwa
NEW TAI LUE VOWEL SIGN OY

Programming

C
\u19BD
JavaScript
\u19BD
Java
\u19BD
Json
\u19BD
Python
\u19BD
Perl
\x{19BD}
PHP
\x{19BD}
Ruby
\u{19BD}
Rust
\u{19BD}
Go
\u19BD

Web

CSS
\0019BD
HtmlDecimal
ᦽ
HtmlHexadecimal
ᦽ
Url
%E1%A6%BD

Code

MD5
9307b4f92347cd8995a1371f544c072f
Sha1
618a20527d9a06c3e14bbd293501205c44e3ad5a
Base64
4aa9

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u19BD';
console.log(char);  // Output: ᦽ

Java:

char c = '\u19BD';
System.out.println(c);  // Output: ᦽ

JSON:

{"text": "\u19BD"}  // Value: ᦽ

Python:

char = '\u19BD'
print(char)  # Output: ᦽ

Perl:

my $char = "\x{19BD}";
print $char;  # Output: ᦽ

PHP:

$char = "\x{19BD}";
echo $char;  // Output: ᦽ

Ruby:

char = "\u{19BD}"
puts char  # Output: ᦽ

Rust:

let c = '\u{19BD}';
println!("{}", c);  // Output: ᦽ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0019BD";  /* Display: ᦽ */
}

HTML Decimal:

<p>HTML decimal: &#6589;</p>  <!-- Display: ᦽ -->

HTML Hexadecimal:

<p>HTML hex: &#x19BD;</p>  <!-- Display: ᦽ -->

URL Encoding:

// ᦽ URL encoding
https://unicodefinder.com/search.php?query=%E1%A6%BD

Encodings

MD5:

9307b4f92347cd8995a1371f544c072f

SHA1:

618a20527d9a06c3e14bbd293501205c44e3ad5a

Base64:

4aa9