Unicode Finder

"污" U+6C61(CJK UNIFIED IDEOGRAPH-6C61)

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

Programming

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

Web

CSS
\006C61
HtmlDecimal
污
HtmlHexadecimal
污
Url
%E6%B1%A1

Code

MD5
5b3c6e66da80742780e8c1eaef6a0635
Sha1
3334f1e85637cba8a042c2f93ce5a1674cd81ef8
Base64
5rGh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C61';
console.log(char);  // Output: 污

Java:

char c = '\u6C61';
System.out.println(c);  // Output: 污

JSON:

{"text": "\u6C61"}  // Value: 污

Python:

char = '\u6C61'
print(char)  # Output: 污

Perl:

my $char = "\x{6C61}";
print $char;  # Output: 污

PHP:

$char = "\x{6C61}";
echo $char;  // Output: 污

Ruby:

char = "\u{6C61}"
puts char  # Output: 污

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27745;</p>  <!-- Display: 污 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C61;</p>  <!-- Display: 污 -->

URL Encoding:

// 污 URL encoding
https://unicodefinder.com/search.php?query=%E6%B1%A1

Encodings

MD5:

5b3c6e66da80742780e8c1eaef6a0635

SHA1:

3334f1e85637cba8a042c2f93ce5a1674cd81ef8

Base64:

5rGh