Unicode Finder

"艌" U+824C(CJK UNIFIED IDEOGRAPH-824C)

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

Programming

C
\u824C
JavaScript
\u824C
Java
\u824C
Json
\u824C
Python
\u824C
Perl
\x{824C}
PHP
\x{824C}
Ruby
\u{824C}
Rust
\u{824C}
Go
\u824C

Web

CSS
\00824C
HtmlDecimal
艌
HtmlHexadecimal
艌
Url
%E8%89%8C

Code

MD5
17c5545c90355e738c8685c710b9b3d8
Sha1
27a2efaf075f8130795298d599457322bd7bce5f
Base64
6ImM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u824C';
console.log(char);  // Output: 艌

Java:

char c = '\u824C';
System.out.println(c);  // Output: 艌

JSON:

{"text": "\u824C"}  // Value: 艌

Python:

char = '\u824C'
print(char)  # Output: 艌

Perl:

my $char = "\x{824C}";
print $char;  # Output: 艌

PHP:

$char = "\x{824C}";
echo $char;  // Output: 艌

Ruby:

char = "\u{824C}"
puts char  # Output: 艌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33356;</p>  <!-- Display: 艌 -->

HTML Hexadecimal:

<p>HTML hex: &#x824C;</p>  <!-- Display: 艌 -->

URL Encoding:

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

Encodings

MD5:

17c5545c90355e738c8685c710b9b3d8

SHA1:

27a2efaf075f8130795298d599457322bd7bce5f

Base64:

6ImM