Unicode Finder

"ᝅ" U+1745(BUHID LETTER NGA)

U+1745
Nazwa Bloku
Buhid
Nazwa
BUHID LETTER NGA

Programming

C
\u1745
JavaScript
\u1745
Java
\u1745
Json
\u1745
Python
\u1745
Perl
\x{1745}
PHP
\x{1745}
Ruby
\u{1745}
Rust
\u{1745}
Go
\u1745

Web

CSS
\001745
HtmlDecimal
ᝅ
HtmlHexadecimal
ᝅ
Url
%E1%9D%85

Code

MD5
c7cf31debf4c35863cfe00088e4b1f9d
Sha1
2bbc4494d74742c686f01e0d1f29766b40a71959
Base64
4Z2F

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1745';
console.log(char);  // Output: ᝅ

Java:

char c = '\u1745';
System.out.println(c);  // Output: ᝅ

JSON:

{"text": "\u1745"}  // Value: ᝅ

Python:

char = '\u1745'
print(char)  # Output: ᝅ

Perl:

my $char = "\x{1745}";
print $char;  # Output: ᝅ

PHP:

$char = "\x{1745}";
echo $char;  // Output: ᝅ

Ruby:

char = "\u{1745}"
puts char  # Output: ᝅ

Rust:

let c = '\u{1745}';
println!("{}", c);  // Output: ᝅ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001745";  /* Display: ᝅ */
}

HTML Decimal:

<p>HTML decimal: &#5957;</p>  <!-- Display: ᝅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1745;</p>  <!-- Display: ᝅ -->

URL Encoding:

// ᝅ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%85

Encodings

MD5:

c7cf31debf4c35863cfe00088e4b1f9d

SHA1:

2bbc4494d74742c686f01e0d1f29766b40a71959

Base64:

4Z2F