Unicode Finder

"播" U+64AD(CJK UNIFIED IDEOGRAPH-64AD)

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

Programming

C
\u64AD
JavaScript
\u64AD
Java
\u64AD
Json
\u64AD
Python
\u64AD
Perl
\x{64AD}
PHP
\x{64AD}
Ruby
\u{64AD}
Rust
\u{64AD}
Go
\u64AD

Web

CSS
\0064AD
HtmlDecimal
播
HtmlHexadecimal
播
Url
%E6%92%AD

Code

MD5
87c6b1961a2f0504718a0fa34f3ad420
Sha1
541e965ff5d83fb3d8bb7fbf37c8df98cbc717a7
Base64
5pKt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u64AD';
console.log(char);  // Output: 播

Java:

char c = '\u64AD';
System.out.println(c);  // Output: 播

JSON:

{"text": "\u64AD"}  // Value: 播

Python:

char = '\u64AD'
print(char)  # Output: 播

Perl:

my $char = "\x{64AD}";
print $char;  # Output: 播

PHP:

$char = "\x{64AD}";
echo $char;  // Output: 播

Ruby:

char = "\u{64AD}"
puts char  # Output: 播

Rust:

let c = '\u{64AD}';
println!("{}", c);  // Output: 播

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0064AD";  /* Display: 播 */
}

HTML Decimal:

<p>HTML decimal: &#25773;</p>  <!-- Display: 播 -->

HTML Hexadecimal:

<p>HTML hex: &#x64AD;</p>  <!-- Display: 播 -->

URL Encoding:

// 播 URL encoding
https://unicodefinder.com/search.php?query=%E6%92%AD

Encodings

MD5:

87c6b1961a2f0504718a0fa34f3ad420

SHA1:

541e965ff5d83fb3d8bb7fbf37c8df98cbc717a7

Base64:

5pKt