Unicode Finder

"縮" U+7E2E(CJK UNIFIED IDEOGRAPH-7E2E)

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

Programming

C
\u7E2E
JavaScript
\u7E2E
Java
\u7E2E
Json
\u7E2E
Python
\u7E2E
Perl
\x{7E2E}
PHP
\x{7E2E}
Ruby
\u{7E2E}
Rust
\u{7E2E}
Go
\u7E2E

Web

CSS
\007E2E
HtmlDecimal
縮
HtmlHexadecimal
縮
Url
%E7%B8%AE

Code

MD5
6ae419b7fc421d1085cae4ffa0d7f1c8
Sha1
aff607792fce7fca0eee4ff1c60393a85b3481a7
Base64
57iu

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7E2E';
console.log(char);  // Output: 縮

Java:

char c = '\u7E2E';
System.out.println(c);  // Output: 縮

JSON:

{"text": "\u7E2E"}  // Value: 縮

Python:

char = '\u7E2E'
print(char)  # Output: 縮

Perl:

my $char = "\x{7E2E}";
print $char;  # Output: 縮

PHP:

$char = "\x{7E2E}";
echo $char;  // Output: 縮

Ruby:

char = "\u{7E2E}"
puts char  # Output: 縮

Rust:

let c = '\u{7E2E}';
println!("{}", c);  // Output: 縮

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007E2E";  /* Display: 縮 */
}

HTML Decimal:

<p>HTML decimal: &#32302;</p>  <!-- Display: 縮 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E2E;</p>  <!-- Display: 縮 -->

URL Encoding:

// 縮 URL encoding
https://unicodefinder.com/search.php?query=%E7%B8%AE

Encodings

MD5:

6ae419b7fc421d1085cae4ffa0d7f1c8

SHA1:

aff607792fce7fca0eee4ff1c60393a85b3481a7

Base64:

57iu