Unicode Finder

"ց" U+0581(ARMENIAN SMALL LETTER CO)

ց
U+0581
Block Name
Armenian
Name
ARMENIAN SMALL LETTER CO

Programming

C
\u0581
JavaScript
\u0581
Java
\u0581
Json
\u0581
Python
\u0581
Perl
\x{0581}
PHP
\x{0581}
Ruby
\u{0581}
Rust
\u{581}
Go
\u0581

Web

CSS
\000581
HtmlDecimal
ց
HtmlHexadecimal
ց
Url
%D6%81

Code

MD5
49106409be0324c36ae1b8506179b9ee
Sha1
d74c93b1ac87765b919f731817cdea08f9f49c51
Base64
1oE=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0581';
console.log(char);  // Output: ց

Java:

char c = '\u0581';
System.out.println(c);  // Output: ց

JSON:

{"text": "\u0581"}  // Value: ց

Python:

char = '\u0581'
print(char)  # Output: ց

Perl:

my $char = "\x{0581}";
print $char;  # Output: ց

PHP:

$char = "\x{0581}";
echo $char;  // Output: ց

Ruby:

char = "\u{0581}"
puts char  # Output: ց

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000581";  /* Display: ց */
}

HTML Decimal:

<p>HTML decimal: &#1409;</p>  <!-- Display: ց -->

HTML Hexadecimal:

<p>HTML hex: &#x0581;</p>  <!-- Display: ց -->

URL Encoding:

// ց URL encoding
https://unicodefinder.com/search.php?query=%D6%81

Encodings

MD5:

49106409be0324c36ae1b8506179b9ee

SHA1:

d74c93b1ac87765b919f731817cdea08f9f49c51

Base64:

1oE=