Unicode Finder

"ⵌ" U+2D4C(TIFINAGH LETTER TUAREG YAZH)

U+2D4C
Block Name
Tifinagh
Name
TIFINAGH LETTER TUAREG YAZH

Programming

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

Web

CSS
\002D4C
HtmlDecimal
ⵌ
HtmlHexadecimal
ⵌ
Url
%E2%B5%8C

Code

MD5
ece42ccecb7db678113c81d4cd1ebe51
Sha1
3f6c1f1103d643251ed732010e75d13d3793d825
Base64
4rWM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D4C';
console.log(char);  // Output: ⵌ

Java:

char c = '\u2D4C';
System.out.println(c);  // Output: ⵌ

JSON:

{"text": "\u2D4C"}  // Value: ⵌ

Python:

char = '\u2D4C'
print(char)  # Output: ⵌ

Perl:

my $char = "\x{2D4C}";
print $char;  # Output: ⵌ

PHP:

$char = "\x{2D4C}";
echo $char;  // Output: ⵌ

Ruby:

char = "\u{2D4C}"
puts char  # Output: ⵌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11596;</p>  <!-- Display: ⵌ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D4C;</p>  <!-- Display: ⵌ -->

URL Encoding:

// ⵌ URL encoding
https://unicodefinder.com/search.php?query=%E2%B5%8C

Encodings

MD5:

ece42ccecb7db678113c81d4cd1ebe51

SHA1:

3f6c1f1103d643251ed732010e75d13d3793d825

Base64:

4rWM