Unicode Finder

"這" U+9019(CJK UNIFIED IDEOGRAPH-9019)

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

Programming

C
\u9019
JavaScript
\u9019
Java
\u9019
Json
\u9019
Python
\u9019
Perl
\x{9019}
PHP
\x{9019}
Ruby
\u{9019}
Rust
\u{9019}
Go
\u9019

Web

CSS
\009019
HtmlDecimal
這
HtmlHexadecimal
這
Url
%E9%80%99

Code

MD5
eef15e51436dc99197fc0bf4b54d47f0
Sha1
c3733f486e3a10edf531e3e73f9fce36224f7213
Base64
6YCZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9019';
console.log(char);  // Output: 這

Java:

char c = '\u9019';
System.out.println(c);  // Output: 這

JSON:

{"text": "\u9019"}  // Value: 這

Python:

char = '\u9019'
print(char)  # Output: 這

Perl:

my $char = "\x{9019}";
print $char;  # Output: 這

PHP:

$char = "\x{9019}";
echo $char;  // Output: 這

Ruby:

char = "\u{9019}"
puts char  # Output: 這

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009019";  /* Display: 這 */
}

HTML Decimal:

<p>HTML decimal: &#36889;</p>  <!-- Display: 這 -->

HTML Hexadecimal:

<p>HTML hex: &#x9019;</p>  <!-- Display: 這 -->

URL Encoding:

// 這 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%99

Encodings

MD5:

eef15e51436dc99197fc0bf4b54d47f0

SHA1:

c3733f486e3a10edf531e3e73f9fce36224f7213

Base64:

6YCZ