Unicode Finder

"瘠" U+7620(CJK UNIFIED IDEOGRAPH-7620)

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

Programming

C
\u7620
JavaScript
\u7620
Java
\u7620
Json
\u7620
Python
\u7620
Perl
\x{7620}
PHP
\x{7620}
Ruby
\u{7620}
Rust
\u{7620}
Go
\u7620

Web

CSS
\007620
HtmlDecimal
瘠
HtmlHexadecimal
瘠
Url
%E7%98%A0

Code

MD5
6111101ef20098b52f0e4344bcac6539
Sha1
ac8f80f5a6e43b3a1422a77331f0e0858ee9c313
Base64
55ig

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7620';
console.log(char);  // Output: 瘠

Java:

char c = '\u7620';
System.out.println(c);  // Output: 瘠

JSON:

{"text": "\u7620"}  // Value: 瘠

Python:

char = '\u7620'
print(char)  # Output: 瘠

Perl:

my $char = "\x{7620}";
print $char;  # Output: 瘠

PHP:

$char = "\x{7620}";
echo $char;  // Output: 瘠

Ruby:

char = "\u{7620}"
puts char  # Output: 瘠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007620";  /* Display: 瘠 */
}

HTML Decimal:

<p>HTML decimal: &#30240;</p>  <!-- Display: 瘠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7620;</p>  <!-- Display: 瘠 -->

URL Encoding:

// 瘠 URL encoding
https://unicodefinder.com/search.php?query=%E7%98%A0

Encodings

MD5:

6111101ef20098b52f0e4344bcac6539

SHA1:

ac8f80f5a6e43b3a1422a77331f0e0858ee9c313

Base64:

55ig