Unicode Finder

"喙" U+5599(CJK UNIFIED IDEOGRAPH-5599)

U+5599
Название Блока
CJK Unified Ideographs
Название
CJK UNIFIED IDEOGRAPH-5599

Programming

C
\u5599
JavaScript
\u5599
Java
\u5599
Json
\u5599
Python
\u5599
Perl
\x{5599}
PHP
\x{5599}
Ruby
\u{5599}
Rust
\u{5599}
Go
\u5599

Web

CSS
\005599
HtmlDecimal
喙
HtmlHexadecimal
喙
Url
%E5%96%99

Code

MD5
69dbb15c8def158d17626758c49b937c
Sha1
416afb215736622f35fedd901071f10e73026e66
Base64
5ZaZ

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u5599';
console.log(char);  // Output: 喙

Java:

char c = '\u5599';
System.out.println(c);  // Output: 喙

JSON:

{"text": "\u5599"}  // Value: 喙

Python:

char = '\u5599'
print(char)  # Output: 喙

Perl:

my $char = "\x{5599}";
print $char;  # Output: 喙

PHP:

$char = "\x{5599}";
echo $char;  // Output: 喙

Ruby:

char = "\u{5599}"
puts char  # Output: 喙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005599";  /* Display: 喙 */
}

HTML Decimal:

<p>HTML decimal: &#21913;</p>  <!-- Display: 喙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5599;</p>  <!-- Display: 喙 -->

URL Encoding:

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

Encodings

MD5:

69dbb15c8def158d17626758c49b937c

SHA1:

416afb215736622f35fedd901071f10e73026e66

Base64:

5ZaZ