Unicode Finder

"艑" U+8251(CJK UNIFIED IDEOGRAPH-8251)

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

Programming

C
\u8251
JavaScript
\u8251
Java
\u8251
Json
\u8251
Python
\u8251
Perl
\x{8251}
PHP
\x{8251}
Ruby
\u{8251}
Rust
\u{8251}
Go
\u8251

Web

CSS
\008251
HtmlDecimal
艑
HtmlHexadecimal
艑
Url
%E8%89%91

Code

MD5
fcd559337233d46d4d69ff50322f1a78
Sha1
9aacceba3ddc182079ef80f422ab45ccbf4d36a3
Base64
6ImR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8251';
console.log(char);  // Output: 艑

Java:

char c = '\u8251';
System.out.println(c);  // Output: 艑

JSON:

{"text": "\u8251"}  // Value: 艑

Python:

char = '\u8251'
print(char)  # Output: 艑

Perl:

my $char = "\x{8251}";
print $char;  # Output: 艑

PHP:

$char = "\x{8251}";
echo $char;  // Output: 艑

Ruby:

char = "\u{8251}"
puts char  # Output: 艑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008251";  /* Display: 艑 */
}

HTML Decimal:

<p>HTML decimal: &#33361;</p>  <!-- Display: 艑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8251;</p>  <!-- Display: 艑 -->

URL Encoding:

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

Encodings

MD5:

fcd559337233d46d4d69ff50322f1a78

SHA1:

9aacceba3ddc182079ef80f422ab45ccbf4d36a3

Base64:

6ImR