Unicode Finder

"艔" U+8254(CJK UNIFIED IDEOGRAPH-8254)

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

Programming

C
\u8254
JavaScript
\u8254
Java
\u8254
Json
\u8254
Python
\u8254
Perl
\x{8254}
PHP
\x{8254}
Ruby
\u{8254}
Rust
\u{8254}
Go
\u8254

Web

CSS
\008254
HtmlDecimal
艔
HtmlHexadecimal
艔
Url
%E8%89%94

Code

MD5
fea2d2248203f3b8a6fc2146b42cd7ee
Sha1
d5078b0bcdf7d3bf5a778388b1685f1397d3c335
Base64
6ImU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8254';
console.log(char);  // Output: 艔

Java:

char c = '\u8254';
System.out.println(c);  // Output: 艔

JSON:

{"text": "\u8254"}  // Value: 艔

Python:

char = '\u8254'
print(char)  # Output: 艔

Perl:

my $char = "\x{8254}";
print $char;  # Output: 艔

PHP:

$char = "\x{8254}";
echo $char;  // Output: 艔

Ruby:

char = "\u{8254}"
puts char  # Output: 艔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008254";  /* Display: 艔 */
}

HTML Decimal:

<p>HTML decimal: &#33364;</p>  <!-- Display: 艔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8254;</p>  <!-- Display: 艔 -->

URL Encoding:

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

Encodings

MD5:

fea2d2248203f3b8a6fc2146b42cd7ee

SHA1:

d5078b0bcdf7d3bf5a778388b1685f1397d3c335

Base64:

6ImU