Unicode Finder

"剐" U+5250(CJK UNIFIED IDEOGRAPH-5250)

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

Programming

C
\u5250
JavaScript
\u5250
Java
\u5250
Json
\u5250
Python
\u5250
Perl
\x{5250}
PHP
\x{5250}
Ruby
\u{5250}
Rust
\u{5250}
Go
\u5250

Web

CSS
\005250
HtmlDecimal
剐
HtmlHexadecimal
剐
Url
%E5%89%90

Code

MD5
a914d5293a6d8cf729af43d2037faec1
Sha1
c33d139b2349c5e37914e99705719ff705184508
Base64
5YmQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5250';
console.log(char);  // Output: 剐

Java:

char c = '\u5250';
System.out.println(c);  // Output: 剐

JSON:

{"text": "\u5250"}  // Value: 剐

Python:

char = '\u5250'
print(char)  # Output: 剐

Perl:

my $char = "\x{5250}";
print $char;  # Output: 剐

PHP:

$char = "\x{5250}";
echo $char;  // Output: 剐

Ruby:

char = "\u{5250}"
puts char  # Output: 剐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005250";  /* Display: 剐 */
}

HTML Decimal:

<p>HTML decimal: &#21072;</p>  <!-- Display: 剐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5250;</p>  <!-- Display: 剐 -->

URL Encoding:

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

Encodings

MD5:

a914d5293a6d8cf729af43d2037faec1

SHA1:

c33d139b2349c5e37914e99705719ff705184508

Base64:

5YmQ