Unicode Finder

"攕" U+6515(CJK UNIFIED IDEOGRAPH-6515)

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

Programming

C
\u6515
JavaScript
\u6515
Java
\u6515
Json
\u6515
Python
\u6515
Perl
\x{6515}
PHP
\x{6515}
Ruby
\u{6515}
Rust
\u{6515}
Go
\u6515

Web

CSS
\006515
HtmlDecimal
攕
HtmlHexadecimal
攕
Url
%E6%94%95

Code

MD5
9a2a5bb0d43893ae557995d790fc5386
Sha1
b3b12cf2cd22df9709ca294f790024269f6e6720
Base64
5pSV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6515';
console.log(char);  // Output: 攕

Java:

char c = '\u6515';
System.out.println(c);  // Output: 攕

JSON:

{"text": "\u6515"}  // Value: 攕

Python:

char = '\u6515'
print(char)  # Output: 攕

Perl:

my $char = "\x{6515}";
print $char;  # Output: 攕

PHP:

$char = "\x{6515}";
echo $char;  // Output: 攕

Ruby:

char = "\u{6515}"
puts char  # Output: 攕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006515";  /* Display: 攕 */
}

HTML Decimal:

<p>HTML decimal: &#25877;</p>  <!-- Display: 攕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6515;</p>  <!-- Display: 攕 -->

URL Encoding:

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

Encodings

MD5:

9a2a5bb0d43893ae557995d790fc5386

SHA1:

b3b12cf2cd22df9709ca294f790024269f6e6720

Base64:

5pSV