Unicode Finder

"᚜" U+169C(OGHAM REVERSED FEATHER MARK)

U+169C
ブロック名
Ogham
名前
OGHAM REVERSED FEATHER MARK

Programming

C
\u169C
JavaScript
\u169C
Java
\u169C
Json
\u169C
Python
\u169C
Perl
\x{169C}
PHP
\x{169C}
Ruby
\u{169C}
Rust
\u{169C}
Go
\u169C

Web

CSS
\00169C
HtmlDecimal
᚜
HtmlHexadecimal
᚜
Url
%E1%9A%9C

Code

MD5
705002763ab8993adf85deb7f90982d8
Sha1
28e62197d12699c5c4865d6b9f24bee9e0be5e96
Base64
4Zqc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u169C';
console.log(char);  // Output: ᚜

Java:

char c = '\u169C';
System.out.println(c);  // Output: ᚜

JSON:

{"text": "\u169C"}  // Value: ᚜

Python:

char = '\u169C'
print(char)  # Output: ᚜

Perl:

my $char = "\x{169C}";
print $char;  # Output: ᚜

PHP:

$char = "\x{169C}";
echo $char;  // Output: ᚜

Ruby:

char = "\u{169C}"
puts char  # Output: ᚜

Rust:

let c = '\u{169C}';
println!("{}", c);  // Output: ᚜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00169C";  /* Display: ᚜ */
}

HTML Decimal:

<p>HTML decimal: &#5788;</p>  <!-- Display: ᚜ -->

HTML Hexadecimal:

<p>HTML hex: &#x169C;</p>  <!-- Display: ᚜ -->

URL Encoding:

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

Encodings

MD5:

705002763ab8993adf85deb7f90982d8

SHA1:

28e62197d12699c5c4865d6b9f24bee9e0be5e96

Base64:

4Zqc