Unicode Finder

"֙" U+0599(HEBREW ACCENT PASHTA)

֙
U+0599
区块名称
Hebrew
名称
HEBREW ACCENT PASHTA

Programming

C
\u0599
JavaScript
\u0599
Java
\u0599
Json
\u0599
Python
\u0599
Perl
\x{0599}
PHP
\x{0599}
Ruby
\u{0599}
Rust
\u{599}
Go
\u0599

Web

CSS
\000599
HtmlDecimal
֙
HtmlHexadecimal
֙
Url
%D6%99

Code

MD5
e83eadf1117db0408ed5888cb9a0882b
Sha1
62484aeea68a36f520077446e58a22504ad17022
Base64
1pk=

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u0599';
console.log(char);  // Output: ֙

Java:

char c = '\u0599';
System.out.println(c);  // Output: ֙

JSON:

{"text": "\u0599"}  // Value: ֙

Python:

char = '\u0599'
print(char)  # Output: ֙

Perl:

my $char = "\x{0599}";
print $char;  # Output: ֙

PHP:

$char = "\x{0599}";
echo $char;  // Output: ֙

Ruby:

char = "\u{0599}"
puts char  # Output: ֙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000599";  /* Display: ֙ */
}

HTML Decimal:

<p>HTML decimal: &#1433;</p>  <!-- Display: ֙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0599;</p>  <!-- Display: ֙ -->

URL Encoding:

// ֙ URL encoding
https://unicodefinder.com/search.php?query=%D6%99

Encodings

MD5:

e83eadf1117db0408ed5888cb9a0882b

SHA1:

62484aeea68a36f520077446e58a22504ad17022

Base64:

1pk=