Unicode Finder

"艕" U+8255(CJK UNIFIED IDEOGRAPH-8255)

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

Programming

C
\u8255
JavaScript
\u8255
Java
\u8255
Json
\u8255
Python
\u8255
Perl
\x{8255}
PHP
\x{8255}
Ruby
\u{8255}
Rust
\u{8255}
Go
\u8255

Web

CSS
\008255
HtmlDecimal
艕
HtmlHexadecimal
艕
Url
%E8%89%95

Code

MD5
cf60d3057ef1b840e28b6863a282ef22
Sha1
297975a53ec83d08f642be1efd3c086431a4fc0f
Base64
6ImV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8255';
console.log(char);  // Output: 艕

Java:

char c = '\u8255';
System.out.println(c);  // Output: 艕

JSON:

{"text": "\u8255"}  // Value: 艕

Python:

char = '\u8255'
print(char)  # Output: 艕

Perl:

my $char = "\x{8255}";
print $char;  # Output: 艕

PHP:

$char = "\x{8255}";
echo $char;  // Output: 艕

Ruby:

char = "\u{8255}"
puts char  # Output: 艕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008255";  /* Display: 艕 */
}

HTML Decimal:

<p>HTML decimal: &#33365;</p>  <!-- Display: 艕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8255;</p>  <!-- Display: 艕 -->

URL Encoding:

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

Encodings

MD5:

cf60d3057ef1b840e28b6863a282ef22

SHA1:

297975a53ec83d08f642be1efd3c086431a4fc0f

Base64:

6ImV