Unicode Finder

"喉" U+5589(CJK UNIFIED IDEOGRAPH-5589)

U+5589
نام بلوک
CJK Unified Ideographs
نام
CJK UNIFIED IDEOGRAPH-5589

Programming

C
\u5589
JavaScript
\u5589
Java
\u5589
Json
\u5589
Python
\u5589
Perl
\x{5589}
PHP
\x{5589}
Ruby
\u{5589}
Rust
\u{5589}
Go
\u5589

Web

CSS
\005589
HtmlDecimal
喉
HtmlHexadecimal
喉
Url
%E5%96%89

Code

MD5
67ddbf017c6869732682304c550631b8
Sha1
f2717ed4bf371959408d5fd0235d02dd989b9fca
Base64
5ZaJ

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u5589';
console.log(char);  // Output: 喉

Java:

char c = '\u5589';
System.out.println(c);  // Output: 喉

JSON:

{"text": "\u5589"}  // Value: 喉

Python:

char = '\u5589'
print(char)  # Output: 喉

Perl:

my $char = "\x{5589}";
print $char;  # Output: 喉

PHP:

$char = "\x{5589}";
echo $char;  // Output: 喉

Ruby:

char = "\u{5589}"
puts char  # Output: 喉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005589";  /* Display: 喉 */
}

HTML Decimal:

<p>HTML decimal: &#21897;</p>  <!-- Display: 喉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5589;</p>  <!-- Display: 喉 -->

URL Encoding:

// 喉 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%89

Encodings

MD5:

67ddbf017c6869732682304c550631b8

SHA1:

f2717ed4bf371959408d5fd0235d02dd989b9fca

Base64:

5ZaJ