Unicode Finder

"֒" U+0592(HEBREW ACCENT SEGOL)

֒
U+0592
블록 이름
Hebrew
이름
HEBREW ACCENT SEGOL

Programming

C
\u0592
JavaScript
\u0592
Java
\u0592
Json
\u0592
Python
\u0592
Perl
\x{0592}
PHP
\x{0592}
Ruby
\u{0592}
Rust
\u{592}
Go
\u0592

Web

CSS
\000592
HtmlDecimal
֒
HtmlHexadecimal
֒
Url
%D6%92

Code

MD5
d90af3198a870d3c4fe650dbafbc28f5
Sha1
6a355baa057163e8edfc986af5eb02d38f7415e2
Base64
1pI=

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u0592';
console.log(char);  // Output: ֒

Java:

char c = '\u0592';
System.out.println(c);  // Output: ֒

JSON:

{"text": "\u0592"}  // Value: ֒

Python:

char = '\u0592'
print(char)  # Output: ֒

Perl:

my $char = "\x{0592}";
print $char;  # Output: ֒

PHP:

$char = "\x{0592}";
echo $char;  // Output: ֒

Ruby:

char = "\u{0592}"
puts char  # Output: ֒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000592";  /* Display: ֒ */
}

HTML Decimal:

<p>HTML decimal: &#1426;</p>  <!-- Display: ֒ -->

HTML Hexadecimal:

<p>HTML hex: &#x0592;</p>  <!-- Display: ֒ -->

URL Encoding:

// ֒ URL encoding
https://unicodefinder.com/search.php?query=%D6%92

Encodings

MD5:

d90af3198a870d3c4fe650dbafbc28f5

SHA1:

6a355baa057163e8edfc986af5eb02d38f7415e2

Base64:

1pI=