Unicode Finder

"器" U+5668(CJK UNIFIED IDEOGRAPH-5668)

U+5668
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-5668

Programming

C
\u5668
JavaScript
\u5668
Java
\u5668
Json
\u5668
Python
\u5668
Perl
\x{5668}
PHP
\x{5668}
Ruby
\u{5668}
Rust
\u{5668}
Go
\u5668

Web

CSS
\005668
HtmlDecimal
器
HtmlHexadecimal
器
Url
%E5%99%A8

Code

MD5
c656ce7ab50566ed6b9c7d9abfb38345
Sha1
a9276057507f06efa69c3d24e90aeb34810c8ffb
Base64
5Zmo

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5668';
console.log(char);  // Output: 器

Java:

char c = '\u5668';
System.out.println(c);  // Output: 器

JSON:

{"text": "\u5668"}  // Value: 器

Python:

char = '\u5668'
print(char)  # Output: 器

Perl:

my $char = "\x{5668}";
print $char;  # Output: 器

PHP:

$char = "\x{5668}";
echo $char;  // Output: 器

Ruby:

char = "\u{5668}"
puts char  # Output: 器

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005668";  /* Display: 器 */
}

HTML Decimal:

<p>HTML decimal: &#22120;</p>  <!-- Display: 器 -->

HTML Hexadecimal:

<p>HTML hex: &#x5668;</p>  <!-- Display: 器 -->

URL Encoding:

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

Encodings

MD5:

c656ce7ab50566ed6b9c7d9abfb38345

SHA1:

a9276057507f06efa69c3d24e90aeb34810c8ffb

Base64:

5Zmo