Unicode Finder

"攅" U+6505(CJK UNIFIED IDEOGRAPH-6505)

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

Programming

C
\u6505
JavaScript
\u6505
Java
\u6505
Json
\u6505
Python
\u6505
Perl
\x{6505}
PHP
\x{6505}
Ruby
\u{6505}
Rust
\u{6505}
Go
\u6505

Web

CSS
\006505
HtmlDecimal
攅
HtmlHexadecimal
攅
Url
%E6%94%85

Code

MD5
af2c4fb4d21483b2927c60949c4cf05c
Sha1
ab0ade3d378b0fd99158bae38ba2e7d2a740af3c
Base64
5pSF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6505';
console.log(char);  // Output: 攅

Java:

char c = '\u6505';
System.out.println(c);  // Output: 攅

JSON:

{"text": "\u6505"}  // Value: 攅

Python:

char = '\u6505'
print(char)  # Output: 攅

Perl:

my $char = "\x{6505}";
print $char;  # Output: 攅

PHP:

$char = "\x{6505}";
echo $char;  // Output: 攅

Ruby:

char = "\u{6505}"
puts char  # Output: 攅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006505";  /* Display: 攅 */
}

HTML Decimal:

<p>HTML decimal: &#25861;</p>  <!-- Display: 攅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6505;</p>  <!-- Display: 攅 -->

URL Encoding:

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

Encodings

MD5:

af2c4fb4d21483b2927c60949c4cf05c

SHA1:

ab0ade3d378b0fd99158bae38ba2e7d2a740af3c

Base64:

5pSF