Unicode Finder

"艈" U+8248(CJK UNIFIED IDEOGRAPH-8248)

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

Programming

C
\u8248
JavaScript
\u8248
Java
\u8248
Json
\u8248
Python
\u8248
Perl
\x{8248}
PHP
\x{8248}
Ruby
\u{8248}
Rust
\u{8248}
Go
\u8248

Web

CSS
\008248
HtmlDecimal
艈
HtmlHexadecimal
艈
Url
%E8%89%88

Code

MD5
7d650995a47fdd69a5f104401dae8971
Sha1
6de87ec7522c64f25833567c00a3276895a2db18
Base64
6ImI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8248';
console.log(char);  // Output: 艈

Java:

char c = '\u8248';
System.out.println(c);  // Output: 艈

JSON:

{"text": "\u8248"}  // Value: 艈

Python:

char = '\u8248'
print(char)  # Output: 艈

Perl:

my $char = "\x{8248}";
print $char;  # Output: 艈

PHP:

$char = "\x{8248}";
echo $char;  // Output: 艈

Ruby:

char = "\u{8248}"
puts char  # Output: 艈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008248";  /* Display: 艈 */
}

HTML Decimal:

<p>HTML decimal: &#33352;</p>  <!-- Display: 艈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8248;</p>  <!-- Display: 艈 -->

URL Encoding:

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

Encodings

MD5:

7d650995a47fdd69a5f104401dae8971

SHA1:

6de87ec7522c64f25833567c00a3276895a2db18

Base64:

6ImI