Unicode Finder

"漚" U+6F1A(CJK UNIFIED IDEOGRAPH-6F1A)

U+6F1A
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6F1A

Programming

C
\u6F1A
JavaScript
\u6F1A
Java
\u6F1A
Json
\u6F1A
Python
\u6F1A
Perl
\x{6F1A}
PHP
\x{6F1A}
Ruby
\u{6F1A}
Rust
\u{6F1A}
Go
\u6F1A

Web

CSS
\006F1A
HtmlDecimal
漚
HtmlHexadecimal
漚
Url
%E6%BC%9A

Code

MD5
88a7600b04f1ad1820ba22353f21778a
Sha1
9c8f11bb248bdb5f76af5307a71dd88e91be1d01
Base64
5rya

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F1A';
console.log(char);  // Output: 漚

Java:

char c = '\u6F1A';
System.out.println(c);  // Output: 漚

JSON:

{"text": "\u6F1A"}  // Value: 漚

Python:

char = '\u6F1A'
print(char)  # Output: 漚

Perl:

my $char = "\x{6F1A}";
print $char;  # Output: 漚

PHP:

$char = "\x{6F1A}";
echo $char;  // Output: 漚

Ruby:

char = "\u{6F1A}"
puts char  # Output: 漚

Rust:

let c = '\u{6F1A}';
println!("{}", c);  // Output: 漚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006F1A";  /* Display: 漚 */
}

HTML Decimal:

<p>HTML decimal: &#28442;</p>  <!-- Display: 漚 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F1A;</p>  <!-- Display: 漚 -->

URL Encoding:

// 漚 URL encoding
https://unicodefinder.com/search.php?query=%E6%BC%9A

Encodings

MD5:

88a7600b04f1ad1820ba22353f21778a

SHA1:

9c8f11bb248bdb5f76af5307a71dd88e91be1d01

Base64:

5rya