Unicode Finder

"ᚔ" U+1694(OGHAM LETTER IODHADH)

U+1694
區塊名稱
Ogham
名稱
OGHAM LETTER IODHADH

Programming

C
\u1694
JavaScript
\u1694
Java
\u1694
Json
\u1694
Python
\u1694
Perl
\x{1694}
PHP
\x{1694}
Ruby
\u{1694}
Rust
\u{1694}
Go
\u1694

Web

CSS
\001694
HtmlDecimal
ᚔ
HtmlHexadecimal
ᚔ
Url
%E1%9A%94

Code

MD5
acc69924c58750213d6ce0e3b3d4e6e5
Sha1
82447b0531783e1b26868522eecb3a7e048dcf4b
Base64
4ZqU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1694';
console.log(char);  // Output: ᚔ

Java:

char c = '\u1694';
System.out.println(c);  // Output: ᚔ

JSON:

{"text": "\u1694"}  // Value: ᚔ

Python:

char = '\u1694'
print(char)  # Output: ᚔ

Perl:

my $char = "\x{1694}";
print $char;  # Output: ᚔ

PHP:

$char = "\x{1694}";
echo $char;  // Output: ᚔ

Ruby:

char = "\u{1694}"
puts char  # Output: ᚔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001694";  /* Display: ᚔ */
}

HTML Decimal:

<p>HTML decimal: &#5780;</p>  <!-- Display: ᚔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1694;</p>  <!-- Display: ᚔ -->

URL Encoding:

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

Encodings

MD5:

acc69924c58750213d6ce0e3b3d4e6e5

SHA1:

82447b0531783e1b26868522eecb3a7e048dcf4b

Base64:

4ZqU