Unicode Finder

"艬" U+826C(CJK UNIFIED IDEOGRAPH-826C)

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

Programming

C
\u826C
JavaScript
\u826C
Java
\u826C
Json
\u826C
Python
\u826C
Perl
\x{826C}
PHP
\x{826C}
Ruby
\u{826C}
Rust
\u{826C}
Go
\u826C

Web

CSS
\00826C
HtmlDecimal
艬
HtmlHexadecimal
艬
Url
%E8%89%AC

Code

MD5
4a4d776d79902cdd8a98f143ef880298
Sha1
968f81c1aa7a21150eabc4f3b48117b68573d274
Base64
6Ims

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u826C';
console.log(char);  // Output: 艬

Java:

char c = '\u826C';
System.out.println(c);  // Output: 艬

JSON:

{"text": "\u826C"}  // Value: 艬

Python:

char = '\u826C'
print(char)  # Output: 艬

Perl:

my $char = "\x{826C}";
print $char;  # Output: 艬

PHP:

$char = "\x{826C}";
echo $char;  // Output: 艬

Ruby:

char = "\u{826C}"
puts char  # Output: 艬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33388;</p>  <!-- Display: 艬 -->

HTML Hexadecimal:

<p>HTML hex: &#x826C;</p>  <!-- Display: 艬 -->

URL Encoding:

// 艬 URL encoding
https://unicodefinder.com/search.php?query=%E8%89%AC

Encodings

MD5:

4a4d776d79902cdd8a98f143ef880298

SHA1:

968f81c1aa7a21150eabc4f3b48117b68573d274

Base64:

6Ims