Unicode Finder

"ⵉ" U+2D49(TIFINAGH LETTER YI)

U+2D49
Block Name
Tifinagh
Name
TIFINAGH LETTER YI

Programming

C
\u2D49
JavaScript
\u2D49
Java
\u2D49
Json
\u2D49
Python
\u2D49
Perl
\x{2D49}
PHP
\x{2D49}
Ruby
\u{2D49}
Rust
\u{2D49}
Go
\u2D49

Web

CSS
\002D49
HtmlDecimal
ⵉ
HtmlHexadecimal
ⵉ
Url
%E2%B5%89

Code

MD5
433a313ddb742c65875c8b79ebc8f6df
Sha1
18c2f6aa877d22af841d5d0d2df3c5de69ca608d
Base64
4rWJ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D49';
console.log(char);  // Output: ⵉ

Java:

char c = '\u2D49';
System.out.println(c);  // Output: ⵉ

JSON:

{"text": "\u2D49"}  // Value: ⵉ

Python:

char = '\u2D49'
print(char)  # Output: ⵉ

Perl:

my $char = "\x{2D49}";
print $char;  # Output: ⵉ

PHP:

$char = "\x{2D49}";
echo $char;  // Output: ⵉ

Ruby:

char = "\u{2D49}"
puts char  # Output: ⵉ

Rust:

let c = '\u{2D49}';
println!("{}", c);  // Output: ⵉ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002D49";  /* Display: ⵉ */
}

HTML Decimal:

<p>HTML decimal: &#11593;</p>  <!-- Display: ⵉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D49;</p>  <!-- Display: ⵉ -->

URL Encoding:

// ⵉ URL encoding
https://unicodefinder.com/search.php?query=%E2%B5%89

Encodings

MD5:

433a313ddb742c65875c8b79ebc8f6df

SHA1:

18c2f6aa877d22af841d5d0d2df3c5de69ca608d

Base64:

4rWJ