Unicode Finder

"刕" U+5215(CJK UNIFIED IDEOGRAPH-5215)

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

Programming

C
\u5215
JavaScript
\u5215
Java
\u5215
Json
\u5215
Python
\u5215
Perl
\x{5215}
PHP
\x{5215}
Ruby
\u{5215}
Rust
\u{5215}
Go
\u5215

Web

CSS
\005215
HtmlDecimal
刕
HtmlHexadecimal
刕
Url
%E5%88%95

Code

MD5
7dfb114589a742d088d616a38770c6e1
Sha1
297253c8e7a3e4a2b4feb733d6caa0ead9b00ee1
Base64
5YiV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5215';
console.log(char);  // Output: 刕

Java:

char c = '\u5215';
System.out.println(c);  // Output: 刕

JSON:

{"text": "\u5215"}  // Value: 刕

Python:

char = '\u5215'
print(char)  # Output: 刕

Perl:

my $char = "\x{5215}";
print $char;  # Output: 刕

PHP:

$char = "\x{5215}";
echo $char;  // Output: 刕

Ruby:

char = "\u{5215}"
puts char  # Output: 刕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005215";  /* Display: 刕 */
}

HTML Decimal:

<p>HTML decimal: &#21013;</p>  <!-- Display: 刕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5215;</p>  <!-- Display: 刕 -->

URL Encoding:

// 刕 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%95

Encodings

MD5:

7dfb114589a742d088d616a38770c6e1

SHA1:

297253c8e7a3e4a2b4feb733d6caa0ead9b00ee1

Base64:

5YiV