Unicode Finder

"攗" U+6517(CJK UNIFIED IDEOGRAPH-6517)

U+6517
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6517

Programming

C
\u6517
JavaScript
\u6517
Java
\u6517
Json
\u6517
Python
\u6517
Perl
\x{6517}
PHP
\x{6517}
Ruby
\u{6517}
Rust
\u{6517}
Go
\u6517

Web

CSS
\006517
HtmlDecimal
攗
HtmlHexadecimal
攗
Url
%E6%94%97

Code

MD5
e3a77394422dabe3700c3f0ca2e8e40a
Sha1
4151a366fc339fe11825d114cc3590b18b2cd4a0
Base64
5pSX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6517';
console.log(char);  // Output: 攗

Java:

char c = '\u6517';
System.out.println(c);  // Output: 攗

JSON:

{"text": "\u6517"}  // Value: 攗

Python:

char = '\u6517'
print(char)  # Output: 攗

Perl:

my $char = "\x{6517}";
print $char;  # Output: 攗

PHP:

$char = "\x{6517}";
echo $char;  // Output: 攗

Ruby:

char = "\u{6517}"
puts char  # Output: 攗

Rust:

let c = '\u{6517}';
println!("{}", c);  // Output: 攗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006517";  /* Display: 攗 */
}

HTML Decimal:

<p>HTML decimal: &#25879;</p>  <!-- Display: 攗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6517;</p>  <!-- Display: 攗 -->

URL Encoding:

// 攗 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%97

Encodings

MD5:

e3a77394422dabe3700c3f0ca2e8e40a

SHA1:

4151a366fc339fe11825d114cc3590b18b2cd4a0

Base64:

5pSX