Unicode Finder

"֗" U+0597(HEBREW ACCENT REVIA)

֗
U+0597
區塊名稱
Hebrew
名稱
HEBREW ACCENT REVIA

Programming

C
\u0597
JavaScript
\u0597
Java
\u0597
Json
\u0597
Python
\u0597
Perl
\x{0597}
PHP
\x{0597}
Ruby
\u{0597}
Rust
\u{597}
Go
\u0597

Web

CSS
\000597
HtmlDecimal
֗
HtmlHexadecimal
֗
Url
%D6%97

Code

MD5
7e3dfb8aa28658ba545d117d08ff5fcf
Sha1
afe597bf60ce2c6c747ae7b1998fdac6f08f19db
Base64
1pc=

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u0597';
console.log(char);  // Output: ֗

Java:

char c = '\u0597';
System.out.println(c);  // Output: ֗

JSON:

{"text": "\u0597"}  // Value: ֗

Python:

char = '\u0597'
print(char)  # Output: ֗

Perl:

my $char = "\x{0597}";
print $char;  # Output: ֗

PHP:

$char = "\x{0597}";
echo $char;  // Output: ֗

Ruby:

char = "\u{0597}"
puts char  # Output: ֗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000597";  /* Display: ֗ */
}

HTML Decimal:

<p>HTML decimal: &#1431;</p>  <!-- Display: ֗ -->

HTML Hexadecimal:

<p>HTML hex: &#x0597;</p>  <!-- Display: ֗ -->

URL Encoding:

// ֗ URL encoding
https://unicodefinder.com/search.php?query=%D6%97

Encodings

MD5:

7e3dfb8aa28658ba545d117d08ff5fcf

SHA1:

afe597bf60ce2c6c747ae7b1998fdac6f08f19db

Base64:

1pc=