Unicode Finder

"ᦿ" U+19BF(NEW TAI LUE VOWEL SIGN UEY)

ᦿ
U+19BF
ブロック名
New Tai Lue
名前
NEW TAI LUE VOWEL SIGN UEY

Programming

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

Web

CSS
\0019BF
HtmlDecimal
ᦿ
HtmlHexadecimal
ᦿ
Url
%E1%A6%BF

Code

MD5
a2f79590608ac15097b115ba82b23252
Sha1
69c98faf5d1c81fd8dfba06181dcde334452e05a
Base64
4aa/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u19BF';
console.log(char);  // Output: ᦿ

Java:

char c = '\u19BF';
System.out.println(c);  // Output: ᦿ

JSON:

{"text": "\u19BF"}  // Value: ᦿ

Python:

char = '\u19BF'
print(char)  # Output: ᦿ

Perl:

my $char = "\x{19BF}";
print $char;  # Output: ᦿ

PHP:

$char = "\x{19BF}";
echo $char;  // Output: ᦿ

Ruby:

char = "\u{19BF}"
puts char  # Output: ᦿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6591;</p>  <!-- Display: ᦿ -->

HTML Hexadecimal:

<p>HTML hex: &#x19BF;</p>  <!-- Display: ᦿ -->

URL Encoding:

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

Encodings

MD5:

a2f79590608ac15097b115ba82b23252

SHA1:

69c98faf5d1c81fd8dfba06181dcde334452e05a

Base64:

4aa/