Unicode Finder

"爬" U+722C(CJK UNIFIED IDEOGRAPH-722C)

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

Programming

C
\u722C
JavaScript
\u722C
Java
\u722C
Json
\u722C
Python
\u722C
Perl
\x{722C}
PHP
\x{722C}
Ruby
\u{722C}
Rust
\u{722C}
Go
\u722C

Web

CSS
\00722C
HtmlDecimal
爬
HtmlHexadecimal
爬
Url
%E7%88%AC

Code

MD5
0d0bdce4705778795b9abbfc9984c9ea
Sha1
8f01df27c4377a62e79cafe87d08d358e92bed1b
Base64
54is

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u722C';
console.log(char);  // Output: 爬

Java:

char c = '\u722C';
System.out.println(c);  // Output: 爬

JSON:

{"text": "\u722C"}  // Value: 爬

Python:

char = '\u722C'
print(char)  # Output: 爬

Perl:

my $char = "\x{722C}";
print $char;  # Output: 爬

PHP:

$char = "\x{722C}";
echo $char;  // Output: 爬

Ruby:

char = "\u{722C}"
puts char  # Output: 爬

Rust:

let c = '\u{722C}';
println!("{}", c);  // Output: 爬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00722C";  /* Display: 爬 */
}

HTML Decimal:

<p>HTML decimal: &#29228;</p>  <!-- Display: 爬 -->

HTML Hexadecimal:

<p>HTML hex: &#x722C;</p>  <!-- Display: 爬 -->

URL Encoding:

// 爬 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%AC

Encodings

MD5:

0d0bdce4705778795b9abbfc9984c9ea

SHA1:

8f01df27c4377a62e79cafe87d08d358e92bed1b

Base64:

54is