Unicode Finder

"測" U+6E2C(CJK UNIFIED IDEOGRAPH-6E2C)

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

Programming

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

Web

CSS
\006E2C
HtmlDecimal
測
HtmlHexadecimal
測
Url
%E6%B8%AC

Code

MD5
3dd617a54db4e7431229acf3b3562c53
Sha1
e6362745d9d5125b567f442816d07c740c07a016
Base64
5ris

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6E2C';
console.log(char);  // Output: 測

Java:

char c = '\u6E2C';
System.out.println(c);  // Output: 測

JSON:

{"text": "\u6E2C"}  // Value: 測

Python:

char = '\u6E2C'
print(char)  # Output: 測

Perl:

my $char = "\x{6E2C}";
print $char;  # Output: 測

PHP:

$char = "\x{6E2C}";
echo $char;  // Output: 測

Ruby:

char = "\u{6E2C}"
puts char  # Output: 測

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28204;</p>  <!-- Display: 測 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E2C;</p>  <!-- Display: 測 -->

URL Encoding:

// 測 URL encoding
https://unicodefinder.com/search.php?query=%E6%B8%AC

Encodings

MD5:

3dd617a54db4e7431229acf3b3562c53

SHA1:

e6362745d9d5125b567f442816d07c740c07a016

Base64:

5ris