Unicode Finder

"艰" U+8270(CJK UNIFIED IDEOGRAPH-8270)

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

Programming

C
\u8270
JavaScript
\u8270
Java
\u8270
Json
\u8270
Python
\u8270
Perl
\x{8270}
PHP
\x{8270}
Ruby
\u{8270}
Rust
\u{8270}
Go
\u8270

Web

CSS
\008270
HtmlDecimal
艰
HtmlHexadecimal
艰
Url
%E8%89%B0

Code

MD5
88e537764847cd07f1c60f53f7c99048
Sha1
21622eb81e0f6e7c50b8b462340e31850f7c7d92
Base64
6Imw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8270';
console.log(char);  // Output: 艰

Java:

char c = '\u8270';
System.out.println(c);  // Output: 艰

JSON:

{"text": "\u8270"}  // Value: 艰

Python:

char = '\u8270'
print(char)  # Output: 艰

Perl:

my $char = "\x{8270}";
print $char;  # Output: 艰

PHP:

$char = "\x{8270}";
echo $char;  // Output: 艰

Ruby:

char = "\u{8270}"
puts char  # Output: 艰

Rust:

let c = '\u{8270}';
println!("{}", c);  // Output: 艰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008270";  /* Display: 艰 */
}

HTML Decimal:

<p>HTML decimal: &#33392;</p>  <!-- Display: 艰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8270;</p>  <!-- Display: 艰 -->

URL Encoding:

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

Encodings

MD5:

88e537764847cd07f1c60f53f7c99048

SHA1:

21622eb81e0f6e7c50b8b462340e31850f7c7d92

Base64:

6Imw