Unicode Finder

"縩" U+7E29(CJK UNIFIED IDEOGRAPH-7E29)

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

Programming

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

Web

CSS
\007E29
HtmlDecimal
縩
HtmlHexadecimal
縩
Url
%E7%B8%A9

Code

MD5
45458e016109d5611826e949a925a728
Sha1
8f314fc1c4066a1140e40dd38e3f563019bfddad
Base64
57ip

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7E29';
console.log(char);  // Output: 縩

Java:

char c = '\u7E29';
System.out.println(c);  // Output: 縩

JSON:

{"text": "\u7E29"}  // Value: 縩

Python:

char = '\u7E29'
print(char)  # Output: 縩

Perl:

my $char = "\x{7E29}";
print $char;  # Output: 縩

PHP:

$char = "\x{7E29}";
echo $char;  // Output: 縩

Ruby:

char = "\u{7E29}"
puts char  # Output: 縩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32297;</p>  <!-- Display: 縩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E29;</p>  <!-- Display: 縩 -->

URL Encoding:

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

Encodings

MD5:

45458e016109d5611826e949a925a728

SHA1:

8f314fc1c4066a1140e40dd38e3f563019bfddad

Base64:

57ip