Unicode Finder

"噫" U+566B(CJK UNIFIED IDEOGRAPH-566B)

U+566B
שם בלוק
CJK Unified Ideographs
שם
CJK UNIFIED IDEOGRAPH-566B

Programming

C
\u566B
JavaScript
\u566B
Java
\u566B
Json
\u566B
Python
\u566B
Perl
\x{566B}
PHP
\x{566B}
Ruby
\u{566B}
Rust
\u{566B}
Go
\u566B

Web

CSS
\00566B
HtmlDecimal
噫
HtmlHexadecimal
噫
Url
%E5%99%AB

Code

MD5
9ee783fa287051860d89b5f1a9786b27
Sha1
f211633120df13c008c5c3725eaf5994a0791ddd
Base64
5Zmr

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u566B';
console.log(char);  // Output: 噫

Java:

char c = '\u566B';
System.out.println(c);  // Output: 噫

JSON:

{"text": "\u566B"}  // Value: 噫

Python:

char = '\u566B'
print(char)  # Output: 噫

Perl:

my $char = "\x{566B}";
print $char;  # Output: 噫

PHP:

$char = "\x{566B}";
echo $char;  // Output: 噫

Ruby:

char = "\u{566B}"
puts char  # Output: 噫

Rust:

let c = '\u{566B}';
println!("{}", c);  // Output: 噫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00566B";  /* Display: 噫 */
}

HTML Decimal:

<p>HTML decimal: &#22123;</p>  <!-- Display: 噫 -->

HTML Hexadecimal:

<p>HTML hex: &#x566B;</p>  <!-- Display: 噫 -->

URL Encoding:

// 噫 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%AB

Encodings

MD5:

9ee783fa287051860d89b5f1a9786b27

SHA1:

f211633120df13c008c5c3725eaf5994a0791ddd

Base64:

5Zmr