Unicode Finder

"艐" U+8250(CJK UNIFIED IDEOGRAPH-8250)

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

Programming

C
\u8250
JavaScript
\u8250
Java
\u8250
Json
\u8250
Python
\u8250
Perl
\x{8250}
PHP
\x{8250}
Ruby
\u{8250}
Rust
\u{8250}
Go
\u8250

Web

CSS
\008250
HtmlDecimal
艐
HtmlHexadecimal
艐
Url
%E8%89%90

Code

MD5
45a7e45d08c5b69a7d7f03f5fc3cdfeb
Sha1
c311000c8b28fa454fc2b8541c17b122764336c0
Base64
6ImQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8250';
console.log(char);  // Output: 艐

Java:

char c = '\u8250';
System.out.println(c);  // Output: 艐

JSON:

{"text": "\u8250"}  // Value: 艐

Python:

char = '\u8250'
print(char)  # Output: 艐

Perl:

my $char = "\x{8250}";
print $char;  # Output: 艐

PHP:

$char = "\x{8250}";
echo $char;  // Output: 艐

Ruby:

char = "\u{8250}"
puts char  # Output: 艐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008250";  /* Display: 艐 */
}

HTML Decimal:

<p>HTML decimal: &#33360;</p>  <!-- Display: 艐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8250;</p>  <!-- Display: 艐 -->

URL Encoding:

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

Encodings

MD5:

45a7e45d08c5b69a7d7f03f5fc3cdfeb

SHA1:

c311000c8b28fa454fc2b8541c17b122764336c0

Base64:

6ImQ