Unicode Finder

"剘" U+5258(CJK UNIFIED IDEOGRAPH-5258)

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

Programming

C
\u5258
JavaScript
\u5258
Java
\u5258
Json
\u5258
Python
\u5258
Perl
\x{5258}
PHP
\x{5258}
Ruby
\u{5258}
Rust
\u{5258}
Go
\u5258

Web

CSS
\005258
HtmlDecimal
剘
HtmlHexadecimal
剘
Url
%E5%89%98

Code

MD5
0f4cd4214eacee429c7550f560c92dc1
Sha1
bf985661f0e86cef9b4ff9e94b957c45da48a588
Base64
5YmY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5258';
console.log(char);  // Output: 剘

Java:

char c = '\u5258';
System.out.println(c);  // Output: 剘

JSON:

{"text": "\u5258"}  // Value: 剘

Python:

char = '\u5258'
print(char)  # Output: 剘

Perl:

my $char = "\x{5258}";
print $char;  # Output: 剘

PHP:

$char = "\x{5258}";
echo $char;  // Output: 剘

Ruby:

char = "\u{5258}"
puts char  # Output: 剘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005258";  /* Display: 剘 */
}

HTML Decimal:

<p>HTML decimal: &#21080;</p>  <!-- Display: 剘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5258;</p>  <!-- Display: 剘 -->

URL Encoding:

// 剘 URL encoding
https://unicodefinder.com/search.php?query=%E5%89%98

Encodings

MD5:

0f4cd4214eacee429c7550f560c92dc1

SHA1:

bf985661f0e86cef9b4ff9e94b957c45da48a588

Base64:

5YmY