Unicode Finder

"柆" U+67C6(CJK UNIFIED IDEOGRAPH-67C6)

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

Programming

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

Web

CSS
\0067C6
HtmlDecimal
柆
HtmlHexadecimal
柆
Url
%E6%9F%86

Code

MD5
f39b44cbb5ac5965e69cf3dddfa29980
Sha1
018d24e63cadd3d910afe26a412100955a778d17
Base64
5p+G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67C6';
console.log(char);  // Output: 柆

Java:

char c = '\u67C6';
System.out.println(c);  // Output: 柆

JSON:

{"text": "\u67C6"}  // Value: 柆

Python:

char = '\u67C6'
print(char)  # Output: 柆

Perl:

my $char = "\x{67C6}";
print $char;  # Output: 柆

PHP:

$char = "\x{67C6}";
echo $char;  // Output: 柆

Ruby:

char = "\u{67C6}"
puts char  # Output: 柆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26566;</p>  <!-- Display: 柆 -->

HTML Hexadecimal:

<p>HTML hex: &#x67C6;</p>  <!-- Display: 柆 -->

URL Encoding:

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

Encodings

MD5:

f39b44cbb5ac5965e69cf3dddfa29980

SHA1:

018d24e63cadd3d910afe26a412100955a778d17

Base64:

5p+G