Unicode Finder

"塩" U+5869(CJK UNIFIED IDEOGRAPH-5869)

U+5869
Název Bloku
CJK Unified Ideographs
Název
CJK UNIFIED IDEOGRAPH-5869

Programming

C
\u5869
JavaScript
\u5869
Java
\u5869
Json
\u5869
Python
\u5869
Perl
\x{5869}
PHP
\x{5869}
Ruby
\u{5869}
Rust
\u{5869}
Go
\u5869

Web

CSS
\005869
HtmlDecimal
塩
HtmlHexadecimal
塩
Url
%E5%A1%A9

Code

MD5
62b5d415c322d8be0a2601a4e0a64a58
Sha1
9f9ffe808984eb399056d717752ce584f4503ca1
Base64
5aGp

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u5869';
console.log(char);  // Output: 塩

Java:

char c = '\u5869';
System.out.println(c);  // Output: 塩

JSON:

{"text": "\u5869"}  // Value: 塩

Python:

char = '\u5869'
print(char)  # Output: 塩

Perl:

my $char = "\x{5869}";
print $char;  # Output: 塩

PHP:

$char = "\x{5869}";
echo $char;  // Output: 塩

Ruby:

char = "\u{5869}"
puts char  # Output: 塩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005869";  /* Display: 塩 */
}

HTML Decimal:

<p>HTML decimal: &#22633;</p>  <!-- Display: 塩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5869;</p>  <!-- Display: 塩 -->

URL Encoding:

// 塩 URL encoding
https://unicodefinder.com/search.php?query=%E5%A1%A9

Encodings

MD5:

62b5d415c322d8be0a2601a4e0a64a58

SHA1:

9f9ffe808984eb399056d717752ce584f4503ca1

Base64:

5aGp