Unicode Finder

"刔" U+5214(CJK UNIFIED IDEOGRAPH-5214)

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

Programming

C
\u5214
JavaScript
\u5214
Java
\u5214
Json
\u5214
Python
\u5214
Perl
\x{5214}
PHP
\x{5214}
Ruby
\u{5214}
Rust
\u{5214}
Go
\u5214

Web

CSS
\005214
HtmlDecimal
刔
HtmlHexadecimal
刔
Url
%E5%88%94

Code

MD5
469ae750edac584d87e5e765d158c057
Sha1
72745f7de529a6c349b8d8f7e18b0d98d64ea1f4
Base64
5YiU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5214';
console.log(char);  // Output: 刔

Java:

char c = '\u5214';
System.out.println(c);  // Output: 刔

JSON:

{"text": "\u5214"}  // Value: 刔

Python:

char = '\u5214'
print(char)  # Output: 刔

Perl:

my $char = "\x{5214}";
print $char;  # Output: 刔

PHP:

$char = "\x{5214}";
echo $char;  // Output: 刔

Ruby:

char = "\u{5214}"
puts char  # Output: 刔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005214";  /* Display: 刔 */
}

HTML Decimal:

<p>HTML decimal: &#21012;</p>  <!-- Display: 刔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5214;</p>  <!-- Display: 刔 -->

URL Encoding:

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

Encodings

MD5:

469ae750edac584d87e5e765d158c057

SHA1:

72745f7de529a6c349b8d8f7e18b0d98d64ea1f4

Base64:

5YiU