Unicode Finder

"՟" U+055F(ARMENIAN ABBREVIATION MARK)

՟
U+055F
Blockname
Armenian
Name
ARMENIAN ABBREVIATION MARK

Programming

C
\u055F
JavaScript
\u055F
Java
\u055F
Json
\u055F
Python
\u055F
Perl
\x{055F}
PHP
\x{055F}
Ruby
\u{055F}
Rust
\u{55F}
Go
\u055F

Web

CSS
\00055F
HtmlDecimal
՟
HtmlHexadecimal
՟
Url
%D5%9F

Code

MD5
621bc0c26c288e6740574b21d2ab2e6a
Sha1
709a6eba4fecd8d3ee255cf5b475f8ca64dc750c
Base64
1Z8=

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u055F';
console.log(char);  // Output: ՟

Java:

char c = '\u055F';
System.out.println(c);  // Output: ՟

JSON:

{"text": "\u055F"}  // Value: ՟

Python:

char = '\u055F'
print(char)  # Output: ՟

Perl:

my $char = "\x{055F}";
print $char;  # Output: ՟

PHP:

$char = "\x{055F}";
echo $char;  // Output: ՟

Ruby:

char = "\u{055F}"
puts char  # Output: ՟

Rust:

let c = '\u{55F}';
println!("{}", c);  // Output: ՟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00055F";  /* Display: ՟ */
}

HTML Decimal:

<p>HTML decimal: &#1375;</p>  <!-- Display: ՟ -->

HTML Hexadecimal:

<p>HTML hex: &#x055F;</p>  <!-- Display: ՟ -->

URL Encoding:

// ՟ URL encoding
https://unicodefinder.com/search.php?query=%D5%9F

Encodings

MD5:

621bc0c26c288e6740574b21d2ab2e6a

SHA1:

709a6eba4fecd8d3ee255cf5b475f8ca64dc750c

Base64:

1Z8=