Unicode Finder

"其" U+5176(CJK UNIFIED IDEOGRAPH-5176)

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

Programming

C
\u5176
JavaScript
\u5176
Java
\u5176
Json
\u5176
Python
\u5176
Perl
\x{5176}
PHP
\x{5176}
Ruby
\u{5176}
Rust
\u{5176}
Go
\u5176

Web

CSS
\005176
HtmlDecimal
其
HtmlHexadecimal
其
Url
%E5%85%B6

Code

MD5
43608b6b5fc979888a0cc09f94e61a1a
Sha1
4e999b2c263c872073ac127f0ba64f9028230948
Base64
5YW2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5176';
console.log(char);  // Output: 其

Java:

char c = '\u5176';
System.out.println(c);  // Output: 其

JSON:

{"text": "\u5176"}  // Value: 其

Python:

char = '\u5176'
print(char)  # Output: 其

Perl:

my $char = "\x{5176}";
print $char;  # Output: 其

PHP:

$char = "\x{5176}";
echo $char;  // Output: 其

Ruby:

char = "\u{5176}"
puts char  # Output: 其

Rust:

let c = '\u{5176}';
println!("{}", c);  // Output: 其

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005176";  /* Display: 其 */
}

HTML Decimal:

<p>HTML decimal: &#20854;</p>  <!-- Display: 其 -->

HTML Hexadecimal:

<p>HTML hex: &#x5176;</p>  <!-- Display: 其 -->

URL Encoding:

// 其 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%B6

Encodings

MD5:

43608b6b5fc979888a0cc09f94e61a1a

SHA1:

4e999b2c263c872073ac127f0ba64f9028230948

Base64:

5YW2