Unicode Finder

"賃" U+8CC3(CJK UNIFIED IDEOGRAPH-8CC3)

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

Programming

C
\u8CC3
JavaScript
\u8CC3
Java
\u8CC3
Json
\u8CC3
Python
\u8CC3
Perl
\x{8CC3}
PHP
\x{8CC3}
Ruby
\u{8CC3}
Rust
\u{8CC3}
Go
\u8CC3

Web

CSS
\008CC3
HtmlDecimal
賃
HtmlHexadecimal
賃
Url
%E8%B3%83

Code

MD5
3bf9ab57ae21e7c65070266827cac93a
Sha1
c59ed670cea844abe3194cfedcd389f1eb01f17c
Base64
6LOD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CC3';
console.log(char);  // Output: 賃

Java:

char c = '\u8CC3';
System.out.println(c);  // Output: 賃

JSON:

{"text": "\u8CC3"}  // Value: 賃

Python:

char = '\u8CC3'
print(char)  # Output: 賃

Perl:

my $char = "\x{8CC3}";
print $char;  # Output: 賃

PHP:

$char = "\x{8CC3}";
echo $char;  // Output: 賃

Ruby:

char = "\u{8CC3}"
puts char  # Output: 賃

Rust:

let c = '\u{8CC3}';
println!("{}", c);  // Output: 賃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008CC3";  /* Display: 賃 */
}

HTML Decimal:

<p>HTML decimal: &#36035;</p>  <!-- Display: 賃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CC3;</p>  <!-- Display: 賃 -->

URL Encoding:

// 賃 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%83

Encodings

MD5:

3bf9ab57ae21e7c65070266827cac93a

SHA1:

c59ed670cea844abe3194cfedcd389f1eb01f17c

Base64:

6LOD