Unicode Finder

"艏" U+824F(CJK UNIFIED IDEOGRAPH-824F)

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

Programming

C
\u824F
JavaScript
\u824F
Java
\u824F
Json
\u824F
Python
\u824F
Perl
\x{824F}
PHP
\x{824F}
Ruby
\u{824F}
Rust
\u{824F}
Go
\u824F

Web

CSS
\00824F
HtmlDecimal
艏
HtmlHexadecimal
艏
Url
%E8%89%8F

Code

MD5
22a5f21811f81b4fd533f20e604f49c1
Sha1
28defea799c4dd7cae38caa03c43554f33808015
Base64
6ImP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u824F';
console.log(char);  // Output: 艏

Java:

char c = '\u824F';
System.out.println(c);  // Output: 艏

JSON:

{"text": "\u824F"}  // Value: 艏

Python:

char = '\u824F'
print(char)  # Output: 艏

Perl:

my $char = "\x{824F}";
print $char;  # Output: 艏

PHP:

$char = "\x{824F}";
echo $char;  // Output: 艏

Ruby:

char = "\u{824F}"
puts char  # Output: 艏

Rust:

let c = '\u{824F}';
println!("{}", c);  // Output: 艏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00824F";  /* Display: 艏 */
}

HTML Decimal:

<p>HTML decimal: &#33359;</p>  <!-- Display: 艏 -->

HTML Hexadecimal:

<p>HTML hex: &#x824F;</p>  <!-- Display: 艏 -->

URL Encoding:

// 艏 URL encoding
https://unicodefinder.com/search.php?query=%E8%89%8F

Encodings

MD5:

22a5f21811f81b4fd533f20e604f49c1

SHA1:

28defea799c4dd7cae38caa03c43554f33808015

Base64:

6ImP