Unicode Finder

"柚" U+67DA(CJK UNIFIED IDEOGRAPH-67DA)

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

Programming

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

Web

CSS
\0067DA
HtmlDecimal
柚
HtmlHexadecimal
柚
Url
%E6%9F%9A

Code

MD5
dcff95de1262e8258d2426e1793bb7e6
Sha1
420c60b0c6a4846f84ca78c598bf59e449b43d5f
Base64
5p+a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67DA';
console.log(char);  // Output: 柚

Java:

char c = '\u67DA';
System.out.println(c);  // Output: 柚

JSON:

{"text": "\u67DA"}  // Value: 柚

Python:

char = '\u67DA'
print(char)  # Output: 柚

Perl:

my $char = "\x{67DA}";
print $char;  # Output: 柚

PHP:

$char = "\x{67DA}";
echo $char;  // Output: 柚

Ruby:

char = "\u{67DA}"
puts char  # Output: 柚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26586;</p>  <!-- Display: 柚 -->

HTML Hexadecimal:

<p>HTML hex: &#x67DA;</p>  <!-- Display: 柚 -->

URL Encoding:

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

Encodings

MD5:

dcff95de1262e8258d2426e1793bb7e6

SHA1:

420c60b0c6a4846f84ca78c598bf59e449b43d5f

Base64:

5p+a