Unicode Finder

"薐" U+8590(CJK UNIFIED IDEOGRAPH-8590)

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

Programming

C
\u8590
JavaScript
\u8590
Java
\u8590
Json
\u8590
Python
\u8590
Perl
\x{8590}
PHP
\x{8590}
Ruby
\u{8590}
Rust
\u{8590}
Go
\u8590

Web

CSS
\008590
HtmlDecimal
薐
HtmlHexadecimal
薐
Url
%E8%96%90

Code

MD5
51c58dfc999d5dfde2036997ed047dde
Sha1
7366a3e39e2ccaf5417df0966e9f04959c636e3b
Base64
6JaQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8590';
console.log(char);  // Output: 薐

Java:

char c = '\u8590';
System.out.println(c);  // Output: 薐

JSON:

{"text": "\u8590"}  // Value: 薐

Python:

char = '\u8590'
print(char)  # Output: 薐

Perl:

my $char = "\x{8590}";
print $char;  # Output: 薐

PHP:

$char = "\x{8590}";
echo $char;  // Output: 薐

Ruby:

char = "\u{8590}"
puts char  # Output: 薐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008590";  /* Display: 薐 */
}

HTML Decimal:

<p>HTML decimal: &#34192;</p>  <!-- Display: 薐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8590;</p>  <!-- Display: 薐 -->

URL Encoding:

// 薐 URL encoding
https://unicodefinder.com/search.php?query=%E8%96%90

Encodings

MD5:

51c58dfc999d5dfde2036997ed047dde

SHA1:

7366a3e39e2ccaf5417df0966e9f04959c636e3b

Base64:

6JaQ