Unicode Finder

"柙" U+67D9(CJK UNIFIED IDEOGRAPH-67D9)

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

Programming

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

Web

CSS
\0067D9
HtmlDecimal
柙
HtmlHexadecimal
柙
Url
%E6%9F%99

Code

MD5
105372bc5a61f1d4ea849e45064e047d
Sha1
6242ac639f2f1435a5c8b46f40780a3322b38559
Base64
5p+Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67D9';
console.log(char);  // Output: 柙

Java:

char c = '\u67D9';
System.out.println(c);  // Output: 柙

JSON:

{"text": "\u67D9"}  // Value: 柙

Python:

char = '\u67D9'
print(char)  # Output: 柙

Perl:

my $char = "\x{67D9}";
print $char;  # Output: 柙

PHP:

$char = "\x{67D9}";
echo $char;  // Output: 柙

Ruby:

char = "\u{67D9}"
puts char  # Output: 柙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26585;</p>  <!-- Display: 柙 -->

HTML Hexadecimal:

<p>HTML hex: &#x67D9;</p>  <!-- Display: 柙 -->

URL Encoding:

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

Encodings

MD5:

105372bc5a61f1d4ea849e45064e047d

SHA1:

6242ac639f2f1435a5c8b46f40780a3322b38559

Base64:

5p+Z