Unicode Finder

"ᛳ" U+16F3(RUNIC LETTER OO)

U+16F3
שם בלוק
Runic
שם
RUNIC LETTER OO

Programming

C
\u16F3
JavaScript
\u16F3
Java
\u16F3
Json
\u16F3
Python
\u16F3
Perl
\x{16F3}
PHP
\x{16F3}
Ruby
\u{16F3}
Rust
\u{16F3}
Go
\u16F3

Web

CSS
\0016F3
HtmlDecimal
ᛳ
HtmlHexadecimal
ᛳ
Url
%E1%9B%B3

Code

MD5
71d047be927af624faece2244f8d113f
Sha1
f9b0597364595093f9cdc940765f1800fd8d701b
Base64
4Zuz

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

Programming Languages

C:

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

JavaScript:

const char = '\u16F3';
console.log(char);  // Output: ᛳ

Java:

char c = '\u16F3';
System.out.println(c);  // Output: ᛳ

JSON:

{"text": "\u16F3"}  // Value: ᛳ

Python:

char = '\u16F3'
print(char)  # Output: ᛳ

Perl:

my $char = "\x{16F3}";
print $char;  # Output: ᛳ

PHP:

$char = "\x{16F3}";
echo $char;  // Output: ᛳ

Ruby:

char = "\u{16F3}"
puts char  # Output: ᛳ

Rust:

let c = '\u{16F3}';
println!("{}", c);  // Output: ᛳ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0016F3";  /* Display: ᛳ */
}

HTML Decimal:

<p>HTML decimal: &#5875;</p>  <!-- Display: ᛳ -->

HTML Hexadecimal:

<p>HTML hex: &#x16F3;</p>  <!-- Display: ᛳ -->

URL Encoding:

// ᛳ URL encoding
https://unicodefinder.com/search.php?query=%E1%9B%B3

Encodings

MD5:

71d047be927af624faece2244f8d113f

SHA1:

f9b0597364595093f9cdc940765f1800fd8d701b

Base64:

4Zuz