Unicode Finder

"柹" U+67F9(CJK UNIFIED IDEOGRAPH-67F9)

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

Programming

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

Web

CSS
\0067F9
HtmlDecimal
柹
HtmlHexadecimal
柹
Url
%E6%9F%B9

Code

MD5
0597d458a664a7c480cb6327fd97277f
Sha1
f0c77fc7e5ef181be44df3835449aebb81620c17
Base64
5p+5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67F9';
console.log(char);  // Output: 柹

Java:

char c = '\u67F9';
System.out.println(c);  // Output: 柹

JSON:

{"text": "\u67F9"}  // Value: 柹

Python:

char = '\u67F9'
print(char)  # Output: 柹

Perl:

my $char = "\x{67F9}";
print $char;  # Output: 柹

PHP:

$char = "\x{67F9}";
echo $char;  // Output: 柹

Ruby:

char = "\u{67F9}"
puts char  # Output: 柹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26617;</p>  <!-- Display: 柹 -->

HTML Hexadecimal:

<p>HTML hex: &#x67F9;</p>  <!-- Display: 柹 -->

URL Encoding:

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

Encodings

MD5:

0597d458a664a7c480cb6327fd97277f

SHA1:

f0c77fc7e5ef181be44df3835449aebb81620c17

Base64:

5p+5