Unicode Finder

"艠" U+8260(CJK UNIFIED IDEOGRAPH-8260)

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

Programming

C
\u8260
JavaScript
\u8260
Java
\u8260
Json
\u8260
Python
\u8260
Perl
\x{8260}
PHP
\x{8260}
Ruby
\u{8260}
Rust
\u{8260}
Go
\u8260

Web

CSS
\008260
HtmlDecimal
艠
HtmlHexadecimal
艠
Url
%E8%89%A0

Code

MD5
40606c338aed0335777ed5d6c798a058
Sha1
a0874a6a544105fd53b1782471da068bbb5ea744
Base64
6Img

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8260';
console.log(char);  // Output: 艠

Java:

char c = '\u8260';
System.out.println(c);  // Output: 艠

JSON:

{"text": "\u8260"}  // Value: 艠

Python:

char = '\u8260'
print(char)  # Output: 艠

Perl:

my $char = "\x{8260}";
print $char;  # Output: 艠

PHP:

$char = "\x{8260}";
echo $char;  // Output: 艠

Ruby:

char = "\u{8260}"
puts char  # Output: 艠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008260";  /* Display: 艠 */
}

HTML Decimal:

<p>HTML decimal: &#33376;</p>  <!-- Display: 艠 -->

HTML Hexadecimal:

<p>HTML hex: &#x8260;</p>  <!-- Display: 艠 -->

URL Encoding:

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

Encodings

MD5:

40606c338aed0335777ed5d6c798a058

SHA1:

a0874a6a544105fd53b1782471da068bbb5ea744

Base64:

6Img