Unicode Finder

"漂" U+6F02(CJK UNIFIED IDEOGRAPH-6F02)

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

Programming

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

Web

CSS
\006F02
HtmlDecimal
漂
HtmlHexadecimal
漂
Url
%E6%BC%82

Code

MD5
1de10117ca7472025a0fe5c4a9f0cf5e
Sha1
dc0601156313f7f1cf8ccb6d549ddab9d84a2831
Base64
5ryC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F02';
console.log(char);  // Output: 漂

Java:

char c = '\u6F02';
System.out.println(c);  // Output: 漂

JSON:

{"text": "\u6F02"}  // Value: 漂

Python:

char = '\u6F02'
print(char)  # Output: 漂

Perl:

my $char = "\x{6F02}";
print $char;  # Output: 漂

PHP:

$char = "\x{6F02}";
echo $char;  // Output: 漂

Ruby:

char = "\u{6F02}"
puts char  # Output: 漂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28418;</p>  <!-- Display: 漂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F02;</p>  <!-- Display: 漂 -->

URL Encoding:

// 漂 URL encoding
https://unicodefinder.com/search.php?query=%E6%BC%82

Encodings

MD5:

1de10117ca7472025a0fe5c4a9f0cf5e

SHA1:

dc0601156313f7f1cf8ccb6d549ddab9d84a2831

Base64:

5ryC