Unicode Finder

"ⴇ" U+2D07(GEORGIAN SMALL LETTER TAN)

U+2D07
Block Name
Georgian Supplement
Name
GEORGIAN SMALL LETTER TAN

Programming

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

Web

CSS
\002D07
HtmlDecimal
ⴇ
HtmlHexadecimal
ⴇ
Url
%E2%B4%87

Code

MD5
17af18826318a5f3cca7542a7a69bea5
Sha1
9ec71c4996148b34389005534cd4870cb46e6312
Base64
4rSH

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D07';
console.log(char);  // Output: ⴇ

Java:

char c = '\u2D07';
System.out.println(c);  // Output: ⴇ

JSON:

{"text": "\u2D07"}  // Value: ⴇ

Python:

char = '\u2D07'
print(char)  # Output: ⴇ

Perl:

my $char = "\x{2D07}";
print $char;  # Output: ⴇ

PHP:

$char = "\x{2D07}";
echo $char;  // Output: ⴇ

Ruby:

char = "\u{2D07}"
puts char  # Output: ⴇ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11527;</p>  <!-- Display: ⴇ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D07;</p>  <!-- Display: ⴇ -->

URL Encoding:

// ⴇ URL encoding
https://unicodefinder.com/search.php?query=%E2%B4%87

Encodings

MD5:

17af18826318a5f3cca7542a7a69bea5

SHA1:

9ec71c4996148b34389005534cd4870cb46e6312

Base64:

4rSH