Unicode Finder

"茜" U+831C(CJK UNIFIED IDEOGRAPH-831C)

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

Programming

C
\u831C
JavaScript
\u831C
Java
\u831C
Json
\u831C
Python
\u831C
Perl
\x{831C}
PHP
\x{831C}
Ruby
\u{831C}
Rust
\u{831C}
Go
\u831C

Web

CSS
\00831C
HtmlDecimal
茜
HtmlHexadecimal
茜
Url
%E8%8C%9C

Code

MD5
986c7569482e933d75404a0c4806f37a
Sha1
a1bbaf201a792061b2373aab8dbf3ddd2c481778
Base64
6Iyc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u831C';
console.log(char);  // Output: 茜

Java:

char c = '\u831C';
System.out.println(c);  // Output: 茜

JSON:

{"text": "\u831C"}  // Value: 茜

Python:

char = '\u831C'
print(char)  # Output: 茜

Perl:

my $char = "\x{831C}";
print $char;  # Output: 茜

PHP:

$char = "\x{831C}";
echo $char;  // Output: 茜

Ruby:

char = "\u{831C}"
puts char  # Output: 茜

Rust:

let c = '\u{831C}';
println!("{}", c);  // Output: 茜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00831C";  /* Display: 茜 */
}

HTML Decimal:

<p>HTML decimal: &#33564;</p>  <!-- Display: 茜 -->

HTML Hexadecimal:

<p>HTML hex: &#x831C;</p>  <!-- Display: 茜 -->

URL Encoding:

// 茜 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%9C

Encodings

MD5:

986c7569482e933d75404a0c4806f37a

SHA1:

a1bbaf201a792061b2373aab8dbf3ddd2c481778

Base64:

6Iyc