Unicode Finder

"艮" U+826E(CJK UNIFIED IDEOGRAPH-826E)

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

Programming

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

Web

CSS
\00826E
HtmlDecimal
艮
HtmlHexadecimal
艮
Url
%E8%89%AE

Code

MD5
d50d48e7d5c3b3915c53808161e3cfd4
Sha1
27463f4e04f590761a689a6344dc045df6003530
Base64
6Imu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u826E';
console.log(char);  // Output: 艮

Java:

char c = '\u826E';
System.out.println(c);  // Output: 艮

JSON:

{"text": "\u826E"}  // Value: 艮

Python:

char = '\u826E'
print(char)  # Output: 艮

Perl:

my $char = "\x{826E}";
print $char;  # Output: 艮

PHP:

$char = "\x{826E}";
echo $char;  // Output: 艮

Ruby:

char = "\u{826E}"
puts char  # Output: 艮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33390;</p>  <!-- Display: 艮 -->

HTML Hexadecimal:

<p>HTML hex: &#x826E;</p>  <!-- Display: 艮 -->

URL Encoding:

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

Encodings

MD5:

d50d48e7d5c3b3915c53808161e3cfd4

SHA1:

27463f4e04f590761a689a6344dc045df6003530

Base64:

6Imu