Unicode Finder

"ᚒ" U+1692(OGHAM LETTER UR)

U+1692
Nume Bloc
Ogham
Nume
OGHAM LETTER UR

Programming

C
\u1692
JavaScript
\u1692
Java
\u1692
Json
\u1692
Python
\u1692
Perl
\x{1692}
PHP
\x{1692}
Ruby
\u{1692}
Rust
\u{1692}
Go
\u1692

Web

CSS
\001692
HtmlDecimal
ᚒ
HtmlHexadecimal
ᚒ
Url
%E1%9A%92

Code

MD5
6996c35c7296b6182eccebcf3cdc11dd
Sha1
c0603fc81145f55e45fcd5e2b45ff44c1089c866
Base64
4ZqS

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1692';
console.log(char);  // Output: ᚒ

Java:

char c = '\u1692';
System.out.println(c);  // Output: ᚒ

JSON:

{"text": "\u1692"}  // Value: ᚒ

Python:

char = '\u1692'
print(char)  # Output: ᚒ

Perl:

my $char = "\x{1692}";
print $char;  # Output: ᚒ

PHP:

$char = "\x{1692}";
echo $char;  // Output: ᚒ

Ruby:

char = "\u{1692}"
puts char  # Output: ᚒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001692";  /* Display: ᚒ */
}

HTML Decimal:

<p>HTML decimal: &#5778;</p>  <!-- Display: ᚒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1692;</p>  <!-- Display: ᚒ -->

URL Encoding:

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

Encodings

MD5:

6996c35c7296b6182eccebcf3cdc11dd

SHA1:

c0603fc81145f55e45fcd5e2b45ff44c1089c866

Base64:

4ZqS