Unicode Finder

"紸" U+7D38(CJK UNIFIED IDEOGRAPH-7D38)

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

Programming

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

Web

CSS
\007D38
HtmlDecimal
紸
HtmlHexadecimal
紸
Url
%E7%B4%B8

Code

MD5
a12e8292b6c6a25d2fce050eb772a015
Sha1
d40ae4da3dfd065b9bd4c3074563983f6958729a
Base64
57S4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7D38';
console.log(char);  // Output: 紸

Java:

char c = '\u7D38';
System.out.println(c);  // Output: 紸

JSON:

{"text": "\u7D38"}  // Value: 紸

Python:

char = '\u7D38'
print(char)  # Output: 紸

Perl:

my $char = "\x{7D38}";
print $char;  # Output: 紸

PHP:

$char = "\x{7D38}";
echo $char;  // Output: 紸

Ruby:

char = "\u{7D38}"
puts char  # Output: 紸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32056;</p>  <!-- Display: 紸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D38;</p>  <!-- Display: 紸 -->

URL Encoding:

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

Encodings

MD5:

a12e8292b6c6a25d2fce050eb772a015

SHA1:

d40ae4da3dfd065b9bd4c3074563983f6958729a

Base64:

57S4