Unicode Finder

"划" U+5212(CJK UNIFIED IDEOGRAPH-5212)

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

Programming

C
\u5212
JavaScript
\u5212
Java
\u5212
Json
\u5212
Python
\u5212
Perl
\x{5212}
PHP
\x{5212}
Ruby
\u{5212}
Rust
\u{5212}
Go
\u5212

Web

CSS
\005212
HtmlDecimal
划
HtmlHexadecimal
划
Url
%E5%88%92

Code

MD5
e79ac435baf85ef9349c05da69fa052c
Sha1
6be6739dada0bb8bb90ae9d7e69320a8799b277b
Base64
5YiS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5212';
console.log(char);  // Output: 划

Java:

char c = '\u5212';
System.out.println(c);  // Output: 划

JSON:

{"text": "\u5212"}  // Value: 划

Python:

char = '\u5212'
print(char)  # Output: 划

Perl:

my $char = "\x{5212}";
print $char;  # Output: 划

PHP:

$char = "\x{5212}";
echo $char;  // Output: 划

Ruby:

char = "\u{5212}"
puts char  # Output: 划

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005212";  /* Display: 划 */
}

HTML Decimal:

<p>HTML decimal: &#21010;</p>  <!-- Display: 划 -->

HTML Hexadecimal:

<p>HTML hex: &#x5212;</p>  <!-- Display: 划 -->

URL Encoding:

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

Encodings

MD5:

e79ac435baf85ef9349c05da69fa052c

SHA1:

6be6739dada0bb8bb90ae9d7e69320a8799b277b

Base64:

5YiS