Unicode Finder

"茝" U+831D(CJK UNIFIED IDEOGRAPH-831D)

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

Programming

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

Web

CSS
\00831D
HtmlDecimal
茝
HtmlHexadecimal
茝
Url
%E8%8C%9D

Code

MD5
219d0746ce8798d341a0b41da42dd6e6
Sha1
f3421fccfbce3b9f05b9d75562a081739fe63098
Base64
6Iyd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u831D';
console.log(char);  // Output: 茝

Java:

char c = '\u831D';
System.out.println(c);  // Output: 茝

JSON:

{"text": "\u831D"}  // Value: 茝

Python:

char = '\u831D'
print(char)  # Output: 茝

Perl:

my $char = "\x{831D}";
print $char;  # Output: 茝

PHP:

$char = "\x{831D}";
echo $char;  // Output: 茝

Ruby:

char = "\u{831D}"
puts char  # Output: 茝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33565;</p>  <!-- Display: 茝 -->

HTML Hexadecimal:

<p>HTML hex: &#x831D;</p>  <!-- Display: 茝 -->

URL Encoding:

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

Encodings

MD5:

219d0746ce8798d341a0b41da42dd6e6

SHA1:

f3421fccfbce3b9f05b9d75562a081739fe63098

Base64:

6Iyd