Unicode Finder

"⵰" U+2D70(TIFINAGH SEPARATOR MARK)

U+2D70
Block Name
Tifinagh
Name
TIFINAGH SEPARATOR MARK

Programming

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

Web

CSS
\002D70
HtmlDecimal
⵰
HtmlHexadecimal
⵰
Url
%E2%B5%B0

Code

MD5
000d86fa08cb3a513e144e490485dd13
Sha1
acbc18705576cb3deb79fabc53937b2ea4691b0f
Base64
4rWw

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D70';
console.log(char);  // Output: ⵰

Java:

char c = '\u2D70';
System.out.println(c);  // Output: ⵰

JSON:

{"text": "\u2D70"}  // Value: ⵰

Python:

char = '\u2D70'
print(char)  # Output: ⵰

Perl:

my $char = "\x{2D70}";
print $char;  # Output: ⵰

PHP:

$char = "\x{2D70}";
echo $char;  // Output: ⵰

Ruby:

char = "\u{2D70}"
puts char  # Output: ⵰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11632;</p>  <!-- Display: ⵰ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D70;</p>  <!-- Display: ⵰ -->

URL Encoding:

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

Encodings

MD5:

000d86fa08cb3a513e144e490485dd13

SHA1:

acbc18705576cb3deb79fabc53937b2ea4691b0f

Base64:

4rWw