Unicode Finder

"֭" U+05AD(HEBREW ACCENT DEHI)

֭
U+05AD
Nazwa Bloku
Hebrew
Nazwa
HEBREW ACCENT DEHI

Programming

C
\u05AD
JavaScript
\u05AD
Java
\u05AD
Json
\u05AD
Python
\u05AD
Perl
\x{05AD}
PHP
\x{05AD}
Ruby
\u{05AD}
Rust
\u{5AD}
Go
\u05AD

Web

CSS
\0005AD
HtmlDecimal
֭
HtmlHexadecimal
֭
Url
%D6%AD

Code

MD5
89173ef7f1550b9e14f7df3867f761b6
Sha1
3501cd7ad82ea70747de789ac87cb4a3b074a15d
Base64
1q0=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u05AD';
console.log(char);  // Output: ֭

Java:

char c = '\u05AD';
System.out.println(c);  // Output: ֭

JSON:

{"text": "\u05AD"}  // Value: ֭

Python:

char = '\u05AD'
print(char)  # Output: ֭

Perl:

my $char = "\x{05AD}";
print $char;  # Output: ֭

PHP:

$char = "\x{05AD}";
echo $char;  // Output: ֭

Ruby:

char = "\u{05AD}"
puts char  # Output: ֭

Rust:

let c = '\u{5AD}';
println!("{}", c);  // Output: ֭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0005AD";  /* Display: ֭ */
}

HTML Decimal:

<p>HTML decimal: &#1453;</p>  <!-- Display: ֭ -->

HTML Hexadecimal:

<p>HTML hex: &#x05AD;</p>  <!-- Display: ֭ -->

URL Encoding:

// ֭ URL encoding
https://unicodefinder.com/search.php?query=%D6%AD

Encodings

MD5:

89173ef7f1550b9e14f7df3867f761b6

SHA1:

3501cd7ad82ea70747de789ac87cb4a3b074a15d

Base64:

1q0=