Unicode Finder

"柒" U+67D2(CJK UNIFIED IDEOGRAPH-67D2)

U+67D2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-67D2

Programming

C
\u67D2
JavaScript
\u67D2
Java
\u67D2
Json
\u67D2
Python
\u67D2
Perl
\x{67D2}
PHP
\x{67D2}
Ruby
\u{67D2}
Rust
\u{67D2}
Go
\u67D2

Web

CSS
\0067D2
HtmlDecimal
柒
HtmlHexadecimal
柒
Url
%E6%9F%92

Code

MD5
c2388bae186e4ec9a7cb8f3beee32cdd
Sha1
014f546e26ccd1d289868393fcdebc9165efa576
Base64
5p+S

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67D2';
console.log(char);  // Output: 柒

Java:

char c = '\u67D2';
System.out.println(c);  // Output: 柒

JSON:

{"text": "\u67D2"}  // Value: 柒

Python:

char = '\u67D2'
print(char)  # Output: 柒

Perl:

my $char = "\x{67D2}";
print $char;  # Output: 柒

PHP:

$char = "\x{67D2}";
echo $char;  // Output: 柒

Ruby:

char = "\u{67D2}"
puts char  # Output: 柒

Rust:

let c = '\u{67D2}';
println!("{}", c);  // Output: 柒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067D2";  /* Display: 柒 */
}

HTML Decimal:

<p>HTML decimal: &#26578;</p>  <!-- Display: 柒 -->

HTML Hexadecimal:

<p>HTML hex: &#x67D2;</p>  <!-- Display: 柒 -->

URL Encoding:

// 柒 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%92

Encodings

MD5:

c2388bae186e4ec9a7cb8f3beee32cdd

SHA1:

014f546e26ccd1d289868393fcdebc9165efa576

Base64:

5p+S