Unicode Finder

"塐" U+5850(CJK UNIFIED IDEOGRAPH-5850)

U+5850
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5850

Programming

C
\u5850
JavaScript
\u5850
Java
\u5850
Json
\u5850
Python
\u5850
Perl
\x{5850}
PHP
\x{5850}
Ruby
\u{5850}
Rust
\u{5850}
Go
\u5850

Web

CSS
\005850
HtmlDecimal
塐
HtmlHexadecimal
塐
Url
%E5%A1%90

Code

MD5
eaf6b8a87e199079b28385a0a9925dad
Sha1
3afb198a0003518e37d034983bf5b15929caa925
Base64
5aGQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5850';
console.log(char);  // Output: 塐

Java:

char c = '\u5850';
System.out.println(c);  // Output: 塐

JSON:

{"text": "\u5850"}  // Value: 塐

Python:

char = '\u5850'
print(char)  # Output: 塐

Perl:

my $char = "\x{5850}";
print $char;  # Output: 塐

PHP:

$char = "\x{5850}";
echo $char;  // Output: 塐

Ruby:

char = "\u{5850}"
puts char  # Output: 塐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005850";  /* Display: 塐 */
}

HTML Decimal:

<p>HTML decimal: &#22608;</p>  <!-- Display: 塐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5850;</p>  <!-- Display: 塐 -->

URL Encoding:

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

Encodings

MD5:

eaf6b8a87e199079b28385a0a9925dad

SHA1:

3afb198a0003518e37d034983bf5b15929caa925

Base64:

5aGQ