Unicode Finder

"艜" U+825C(CJK UNIFIED IDEOGRAPH-825C)

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

Programming

C
\u825C
JavaScript
\u825C
Java
\u825C
Json
\u825C
Python
\u825C
Perl
\x{825C}
PHP
\x{825C}
Ruby
\u{825C}
Rust
\u{825C}
Go
\u825C

Web

CSS
\00825C
HtmlDecimal
艜
HtmlHexadecimal
艜
Url
%E8%89%9C

Code

MD5
1ba41948f86d91ae7639ec67ef2548ad
Sha1
c0704cc0a09596d4511d9c2339ba9691dd89065f
Base64
6Imc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u825C';
console.log(char);  // Output: 艜

Java:

char c = '\u825C';
System.out.println(c);  // Output: 艜

JSON:

{"text": "\u825C"}  // Value: 艜

Python:

char = '\u825C'
print(char)  # Output: 艜

Perl:

my $char = "\x{825C}";
print $char;  # Output: 艜

PHP:

$char = "\x{825C}";
echo $char;  // Output: 艜

Ruby:

char = "\u{825C}"
puts char  # Output: 艜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33372;</p>  <!-- Display: 艜 -->

HTML Hexadecimal:

<p>HTML hex: &#x825C;</p>  <!-- Display: 艜 -->

URL Encoding:

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

Encodings

MD5:

1ba41948f86d91ae7639ec67ef2548ad

SHA1:

c0704cc0a09596d4511d9c2339ba9691dd89065f

Base64:

6Imc