Unicode Finder

"艙" U+8259(CJK UNIFIED IDEOGRAPH-8259)

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

Programming

C
\u8259
JavaScript
\u8259
Java
\u8259
Json
\u8259
Python
\u8259
Perl
\x{8259}
PHP
\x{8259}
Ruby
\u{8259}
Rust
\u{8259}
Go
\u8259

Web

CSS
\008259
HtmlDecimal
艙
HtmlHexadecimal
艙
Url
%E8%89%99

Code

MD5
c9220bde977246aba93b5f02f118171a
Sha1
3b0b020a12ca50dbb6165e2df5057f73fbcd4a85
Base64
6ImZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8259';
console.log(char);  // Output: 艙

Java:

char c = '\u8259';
System.out.println(c);  // Output: 艙

JSON:

{"text": "\u8259"}  // Value: 艙

Python:

char = '\u8259'
print(char)  # Output: 艙

Perl:

my $char = "\x{8259}";
print $char;  # Output: 艙

PHP:

$char = "\x{8259}";
echo $char;  // Output: 艙

Ruby:

char = "\u{8259}"
puts char  # Output: 艙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008259";  /* Display: 艙 */
}

HTML Decimal:

<p>HTML decimal: &#33369;</p>  <!-- Display: 艙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8259;</p>  <!-- Display: 艙 -->

URL Encoding:

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

Encodings

MD5:

c9220bde977246aba93b5f02f118171a

SHA1:

3b0b020a12ca50dbb6165e2df5057f73fbcd4a85

Base64:

6ImZ