Unicode Finder

"ᚈ" U+1688(OGHAM LETTER TINNE)

U+1688
שם בלוק
Ogham
שם
OGHAM LETTER TINNE

Programming

C
\u1688
JavaScript
\u1688
Java
\u1688
Json
\u1688
Python
\u1688
Perl
\x{1688}
PHP
\x{1688}
Ruby
\u{1688}
Rust
\u{1688}
Go
\u1688

Web

CSS
\001688
HtmlDecimal
ᚈ
HtmlHexadecimal
ᚈ
Url
%E1%9A%88

Code

MD5
37fcd6bc710fc6461e40e54182c0109a
Sha1
cab741044493c70ff199ae0d683159c87781a1a8
Base64
4ZqI

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1688';
console.log(char);  // Output: ᚈ

Java:

char c = '\u1688';
System.out.println(c);  // Output: ᚈ

JSON:

{"text": "\u1688"}  // Value: ᚈ

Python:

char = '\u1688'
print(char)  # Output: ᚈ

Perl:

my $char = "\x{1688}";
print $char;  # Output: ᚈ

PHP:

$char = "\x{1688}";
echo $char;  // Output: ᚈ

Ruby:

char = "\u{1688}"
puts char  # Output: ᚈ

Rust:

let c = '\u{1688}';
println!("{}", c);  // Output: ᚈ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001688";  /* Display: ᚈ */
}

HTML Decimal:

<p>HTML decimal: &#5768;</p>  <!-- Display: ᚈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1688;</p>  <!-- Display: ᚈ -->

URL Encoding:

// ᚈ URL encoding
https://unicodefinder.com/search.php?query=%E1%9A%88

Encodings

MD5:

37fcd6bc710fc6461e40e54182c0109a

SHA1:

cab741044493c70ff199ae0d683159c87781a1a8

Base64:

4ZqI