Unicode Finder

"օ" U+0585(ARMENIAN SMALL LETTER OH)

օ
U+0585
Bloknaam
Armenian
Naam
ARMENIAN SMALL LETTER OH

Programming

C
\u0585
JavaScript
\u0585
Java
\u0585
Json
\u0585
Python
\u0585
Perl
\x{0585}
PHP
\x{0585}
Ruby
\u{0585}
Rust
\u{585}
Go
\u0585

Web

CSS
\000585
HtmlDecimal
օ
HtmlHexadecimal
օ
Url
%D6%85

Code

MD5
8a0e69288d882acb7cfc927be13b69f1
Sha1
2715d83daebc71765f6b5db84b6f56ef9ad614d1
Base64
1oU=

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u0585';
console.log(char);  // Output: օ

Java:

char c = '\u0585';
System.out.println(c);  // Output: օ

JSON:

{"text": "\u0585"}  // Value: օ

Python:

char = '\u0585'
print(char)  # Output: օ

Perl:

my $char = "\x{0585}";
print $char;  # Output: օ

PHP:

$char = "\x{0585}";
echo $char;  // Output: օ

Ruby:

char = "\u{0585}"
puts char  # Output: օ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000585";  /* Display: օ */
}

HTML Decimal:

<p>HTML decimal: &#1413;</p>  <!-- Display: օ -->

HTML Hexadecimal:

<p>HTML hex: &#x0585;</p>  <!-- Display: օ -->

URL Encoding:

// օ URL encoding
https://unicodefinder.com/search.php?query=%D6%85

Encodings

MD5:

8a0e69288d882acb7cfc927be13b69f1

SHA1:

2715d83daebc71765f6b5db84b6f56ef9ad614d1

Base64:

1oU=