Unicode Finder

"缩" U+7F29(CJK UNIFIED IDEOGRAPH-7F29)

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

Programming

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

Web

CSS
\007F29
HtmlDecimal
缩
HtmlHexadecimal
缩
Url
%E7%BC%A9

Code

MD5
917d682b27184632f8079bf4cdf6f170
Sha1
ad71a6a8bd243b3aa65171503aa3d2c3ad10392a
Base64
57yp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F29';
console.log(char);  // Output: 缩

Java:

char c = '\u7F29';
System.out.println(c);  // Output: 缩

JSON:

{"text": "\u7F29"}  // Value: 缩

Python:

char = '\u7F29'
print(char)  # Output: 缩

Perl:

my $char = "\x{7F29}";
print $char;  # Output: 缩

PHP:

$char = "\x{7F29}";
echo $char;  // Output: 缩

Ruby:

char = "\u{7F29}"
puts char  # Output: 缩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32553;</p>  <!-- Display: 缩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F29;</p>  <!-- Display: 缩 -->

URL Encoding:

// 缩 URL encoding
https://unicodefinder.com/search.php?query=%E7%BC%A9

Encodings

MD5:

917d682b27184632f8079bf4cdf6f170

SHA1:

ad71a6a8bd243b3aa65171503aa3d2c3ad10392a

Base64:

57yp