Unicode Finder

"艒" U+8252(CJK UNIFIED IDEOGRAPH-8252)

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

Programming

C
\u8252
JavaScript
\u8252
Java
\u8252
Json
\u8252
Python
\u8252
Perl
\x{8252}
PHP
\x{8252}
Ruby
\u{8252}
Rust
\u{8252}
Go
\u8252

Web

CSS
\008252
HtmlDecimal
艒
HtmlHexadecimal
艒
Url
%E8%89%92

Code

MD5
077f9d364b69171c55fc3fe3fee829e0
Sha1
c8cefb7fe8c564c7385b3f179b98cbb824c20468
Base64
6ImS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8252';
console.log(char);  // Output: 艒

Java:

char c = '\u8252';
System.out.println(c);  // Output: 艒

JSON:

{"text": "\u8252"}  // Value: 艒

Python:

char = '\u8252'
print(char)  # Output: 艒

Perl:

my $char = "\x{8252}";
print $char;  # Output: 艒

PHP:

$char = "\x{8252}";
echo $char;  // Output: 艒

Ruby:

char = "\u{8252}"
puts char  # Output: 艒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008252";  /* Display: 艒 */
}

HTML Decimal:

<p>HTML decimal: &#33362;</p>  <!-- Display: 艒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8252;</p>  <!-- Display: 艒 -->

URL Encoding:

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

Encodings

MD5:

077f9d364b69171c55fc3fe3fee829e0

SHA1:

c8cefb7fe8c564c7385b3f179b98cbb824c20468

Base64:

6ImS