Unicode Finder

"沟" U+6C9F(CJK UNIFIED IDEOGRAPH-6C9F)

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

Programming

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

Web

CSS
\006C9F
HtmlDecimal
沟
HtmlHexadecimal
沟
Url
%E6%B2%9F

Code

MD5
dd8477a676542cdf0a06ae1807d99c8d
Sha1
f1d66e185607f5f2316f6c12a69da5fc27590c78
Base64
5rKf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6C9F';
console.log(char);  // Output: 沟

Java:

char c = '\u6C9F';
System.out.println(c);  // Output: 沟

JSON:

{"text": "\u6C9F"}  // Value: 沟

Python:

char = '\u6C9F'
print(char)  # Output: 沟

Perl:

my $char = "\x{6C9F}";
print $char;  # Output: 沟

PHP:

$char = "\x{6C9F}";
echo $char;  // Output: 沟

Ruby:

char = "\u{6C9F}"
puts char  # Output: 沟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27807;</p>  <!-- Display: 沟 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C9F;</p>  <!-- Display: 沟 -->

URL Encoding:

// 沟 URL encoding
https://unicodefinder.com/search.php?query=%E6%B2%9F

Encodings

MD5:

dd8477a676542cdf0a06ae1807d99c8d

SHA1:

f1d66e185607f5f2316f6c12a69da5fc27590c78

Base64:

5rKf