Unicode Finder

"摒" U+6452(CJK UNIFIED IDEOGRAPH-6452)

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

Programming

C
\u6452
JavaScript
\u6452
Java
\u6452
Json
\u6452
Python
\u6452
Perl
\x{6452}
PHP
\x{6452}
Ruby
\u{6452}
Rust
\u{6452}
Go
\u6452

Web

CSS
\006452
HtmlDecimal
摒
HtmlHexadecimal
摒
Url
%E6%91%92

Code

MD5
3c054adf26653921ed093073bcd9172f
Sha1
1b820e8d34e6ed6c3e0e5a9c5d39616c5e6f755e
Base64
5pGS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6452';
console.log(char);  // Output: 摒

Java:

char c = '\u6452';
System.out.println(c);  // Output: 摒

JSON:

{"text": "\u6452"}  // Value: 摒

Python:

char = '\u6452'
print(char)  # Output: 摒

Perl:

my $char = "\x{6452}";
print $char;  # Output: 摒

PHP:

$char = "\x{6452}";
echo $char;  // Output: 摒

Ruby:

char = "\u{6452}"
puts char  # Output: 摒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006452";  /* Display: 摒 */
}

HTML Decimal:

<p>HTML decimal: &#25682;</p>  <!-- Display: 摒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6452;</p>  <!-- Display: 摒 -->

URL Encoding:

// 摒 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%92

Encodings

MD5:

3c054adf26653921ed093073bcd9172f

SHA1:

1b820e8d34e6ed6c3e0e5a9c5d39616c5e6f755e

Base64:

5pGS