Unicode Finder

"᨟" U+1A1F(BUGINESE END OF SECTION)

U+1A1F
Nazwa Bloku
Buginese
Nazwa
BUGINESE END OF SECTION

Programming

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

Web

CSS
\001A1F
HtmlDecimal
᨟
HtmlHexadecimal
᨟
Url
%E1%A8%9F

Code

MD5
59afd76fcadbea2a3606ede65916d733
Sha1
bc009e53ed8394e34279f386c930c993cc775d3c
Base64
4aif

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A1F';
console.log(char);  // Output: ᨟

Java:

char c = '\u1A1F';
System.out.println(c);  // Output: ᨟

JSON:

{"text": "\u1A1F"}  // Value: ᨟

Python:

char = '\u1A1F'
print(char)  # Output: ᨟

Perl:

my $char = "\x{1A1F}";
print $char;  # Output: ᨟

PHP:

$char = "\x{1A1F}";
echo $char;  // Output: ᨟

Ruby:

char = "\u{1A1F}"
puts char  # Output: ᨟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6687;</p>  <!-- Display: ᨟ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A1F;</p>  <!-- Display: ᨟ -->

URL Encoding:

// ᨟ URL encoding
https://unicodefinder.com/search.php?query=%E1%A8%9F

Encodings

MD5:

59afd76fcadbea2a3606ede65916d733

SHA1:

bc009e53ed8394e34279f386c930c993cc775d3c

Base64:

4aif