Unicode Finder

"艨" U+8268(CJK UNIFIED IDEOGRAPH-8268)

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

Programming

C
\u8268
JavaScript
\u8268
Java
\u8268
Json
\u8268
Python
\u8268
Perl
\x{8268}
PHP
\x{8268}
Ruby
\u{8268}
Rust
\u{8268}
Go
\u8268

Web

CSS
\008268
HtmlDecimal
艨
HtmlHexadecimal
艨
Url
%E8%89%A8

Code

MD5
02cf872d3790af81598e54b5361eadd9
Sha1
df078ac925f8789af649c5e73db7feb0d3e58c85
Base64
6Imo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8268';
console.log(char);  // Output: 艨

Java:

char c = '\u8268';
System.out.println(c);  // Output: 艨

JSON:

{"text": "\u8268"}  // Value: 艨

Python:

char = '\u8268'
print(char)  # Output: 艨

Perl:

my $char = "\x{8268}";
print $char;  # Output: 艨

PHP:

$char = "\x{8268}";
echo $char;  // Output: 艨

Ruby:

char = "\u{8268}"
puts char  # Output: 艨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008268";  /* Display: 艨 */
}

HTML Decimal:

<p>HTML decimal: &#33384;</p>  <!-- Display: 艨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8268;</p>  <!-- Display: 艨 -->

URL Encoding:

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

Encodings

MD5:

02cf872d3790af81598e54b5361eadd9

SHA1:

df078ac925f8789af649c5e73db7feb0d3e58c85

Base64:

6Imo