Unicode Finder

"ⵖ" U+2D56(TIFINAGH LETTER YAGH)

U+2D56
Block Name
Tifinagh
Name
TIFINAGH LETTER YAGH

Programming

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

Web

CSS
\002D56
HtmlDecimal
ⵖ
HtmlHexadecimal
ⵖ
Url
%E2%B5%96

Code

MD5
1320d4dc16bb3b942b5988a10ccd3874
Sha1
0d42691a11a5d5cfe219d36243ab1f3c58e3ef12
Base64
4rWW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D56';
console.log(char);  // Output: ⵖ

Java:

char c = '\u2D56';
System.out.println(c);  // Output: ⵖ

JSON:

{"text": "\u2D56"}  // Value: ⵖ

Python:

char = '\u2D56'
print(char)  # Output: ⵖ

Perl:

my $char = "\x{2D56}";
print $char;  # Output: ⵖ

PHP:

$char = "\x{2D56}";
echo $char;  // Output: ⵖ

Ruby:

char = "\u{2D56}"
puts char  # Output: ⵖ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11606;</p>  <!-- Display: ⵖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D56;</p>  <!-- Display: ⵖ -->

URL Encoding:

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

Encodings

MD5:

1320d4dc16bb3b942b5988a10ccd3874

SHA1:

0d42691a11a5d5cfe219d36243ab1f3c58e3ef12

Base64:

4rWW