Unicode Finder

"柷" U+67F7(CJK UNIFIED IDEOGRAPH-67F7)

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

Programming

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

Web

CSS
\0067F7
HtmlDecimal
柷
HtmlHexadecimal
柷
Url
%E6%9F%B7

Code

MD5
dc38067c06a186e3b91a99699396ea78
Sha1
2f56990cc7da8a623847d8e968e91d57ec15991f
Base64
5p+3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67F7';
console.log(char);  // Output: 柷

Java:

char c = '\u67F7';
System.out.println(c);  // Output: 柷

JSON:

{"text": "\u67F7"}  // Value: 柷

Python:

char = '\u67F7'
print(char)  # Output: 柷

Perl:

my $char = "\x{67F7}";
print $char;  # Output: 柷

PHP:

$char = "\x{67F7}";
echo $char;  // Output: 柷

Ruby:

char = "\u{67F7}"
puts char  # Output: 柷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26615;</p>  <!-- Display: 柷 -->

HTML Hexadecimal:

<p>HTML hex: &#x67F7;</p>  <!-- Display: 柷 -->

URL Encoding:

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

Encodings

MD5:

dc38067c06a186e3b91a99699396ea78

SHA1:

2f56990cc7da8a623847d8e968e91d57ec15991f

Base64:

5p+3