Unicode Finder

"柼" U+67FC(CJK UNIFIED IDEOGRAPH-67FC)

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

Programming

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

Web

CSS
\0067FC
HtmlDecimal
柼
HtmlHexadecimal
柼
Url
%E6%9F%BC

Code

MD5
b9f8a27a721411e5a02d84c85f3ee946
Sha1
f8961b7071821635ee3298da1325d42f5ad169f9
Base64
5p+8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67FC';
console.log(char);  // Output: 柼

Java:

char c = '\u67FC';
System.out.println(c);  // Output: 柼

JSON:

{"text": "\u67FC"}  // Value: 柼

Python:

char = '\u67FC'
print(char)  # Output: 柼

Perl:

my $char = "\x{67FC}";
print $char;  # Output: 柼

PHP:

$char = "\x{67FC}";
echo $char;  // Output: 柼

Ruby:

char = "\u{67FC}"
puts char  # Output: 柼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26620;</p>  <!-- Display: 柼 -->

HTML Hexadecimal:

<p>HTML hex: &#x67FC;</p>  <!-- Display: 柼 -->

URL Encoding:

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

Encodings

MD5:

b9f8a27a721411e5a02d84c85f3ee946

SHA1:

f8961b7071821635ee3298da1325d42f5ad169f9

Base64:

5p+8