Unicode Finder

"柉" U+67C9(CJK UNIFIED IDEOGRAPH-67C9)

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

Programming

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

Web

CSS
\0067C9
HtmlDecimal
柉
HtmlHexadecimal
柉
Url
%E6%9F%89

Code

MD5
9e9f73c2269562a6e71a2f68359a8e0d
Sha1
6dee8a1c07b93450d0497d7b62a22832856fe70a
Base64
5p+J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67C9';
console.log(char);  // Output: 柉

Java:

char c = '\u67C9';
System.out.println(c);  // Output: 柉

JSON:

{"text": "\u67C9"}  // Value: 柉

Python:

char = '\u67C9'
print(char)  # Output: 柉

Perl:

my $char = "\x{67C9}";
print $char;  # Output: 柉

PHP:

$char = "\x{67C9}";
echo $char;  // Output: 柉

Ruby:

char = "\u{67C9}"
puts char  # Output: 柉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26569;</p>  <!-- Display: 柉 -->

HTML Hexadecimal:

<p>HTML hex: &#x67C9;</p>  <!-- Display: 柉 -->

URL Encoding:

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

Encodings

MD5:

9e9f73c2269562a6e71a2f68359a8e0d

SHA1:

6dee8a1c07b93450d0497d7b62a22832856fe70a

Base64:

5p+J