Unicode Finder

"ᯤ" U+1BE4(BATAK LETTER I)

U+1BE4
Nazwa Bloku
Batak
Nazwa
BATAK LETTER I

Programming

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

Web

CSS
\001BE4
HtmlDecimal
ᯤ
HtmlHexadecimal
ᯤ
Url
%E1%AF%A4

Code

MD5
73afd3c258f55a2ecedeff51cb2420a1
Sha1
91d361da422adbd2d9e7706f8b4114e5ec5cce19
Base64
4a+k

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1BE4';
console.log(char);  // Output: ᯤ

Java:

char c = '\u1BE4';
System.out.println(c);  // Output: ᯤ

JSON:

{"text": "\u1BE4"}  // Value: ᯤ

Python:

char = '\u1BE4'
print(char)  # Output: ᯤ

Perl:

my $char = "\x{1BE4}";
print $char;  # Output: ᯤ

PHP:

$char = "\x{1BE4}";
echo $char;  // Output: ᯤ

Ruby:

char = "\u{1BE4}"
puts char  # Output: ᯤ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7140;</p>  <!-- Display: ᯤ -->

HTML Hexadecimal:

<p>HTML hex: &#x1BE4;</p>  <!-- Display: ᯤ -->

URL Encoding:

// ᯤ URL encoding
https://unicodefinder.com/search.php?query=%E1%AF%A4

Encodings

MD5:

73afd3c258f55a2ecedeff51cb2420a1

SHA1:

91d361da422adbd2d9e7706f8b4114e5ec5cce19

Base64:

4a+k