Unicode Finder

"艪" U+826A(CJK UNIFIED IDEOGRAPH-826A)

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

Programming

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

Web

CSS
\00826A
HtmlDecimal
艪
HtmlHexadecimal
艪
Url
%E8%89%AA

Code

MD5
3c112af77573566780c952c86a96a1e2
Sha1
f630a8f0e1f4f3867fd58955a58722dd8d035e6e
Base64
6Imq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u826A';
console.log(char);  // Output: 艪

Java:

char c = '\u826A';
System.out.println(c);  // Output: 艪

JSON:

{"text": "\u826A"}  // Value: 艪

Python:

char = '\u826A'
print(char)  # Output: 艪

Perl:

my $char = "\x{826A}";
print $char;  # Output: 艪

PHP:

$char = "\x{826A}";
echo $char;  // Output: 艪

Ruby:

char = "\u{826A}"
puts char  # Output: 艪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33386;</p>  <!-- Display: 艪 -->

HTML Hexadecimal:

<p>HTML hex: &#x826A;</p>  <!-- Display: 艪 -->

URL Encoding:

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

Encodings

MD5:

3c112af77573566780c952c86a96a1e2

SHA1:

f630a8f0e1f4f3867fd58955a58722dd8d035e6e

Base64:

6Imq