Unicode Finder

"設" U+8A2D(CJK UNIFIED IDEOGRAPH-8A2D)

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

Programming

C
\u8A2D
JavaScript
\u8A2D
Java
\u8A2D
Json
\u8A2D
Python
\u8A2D
Perl
\x{8A2D}
PHP
\x{8A2D}
Ruby
\u{8A2D}
Rust
\u{8A2D}
Go
\u8A2D

Web

CSS
\008A2D
HtmlDecimal
設
HtmlHexadecimal
設
Url
%E8%A8%AD

Code

MD5
f887f27ffbd6a66266d60ddf24ab95e3
Sha1
266fb7583f2f08e00aa9dfe8fc1ede098faeec67
Base64
6Kit

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8A2D';
console.log(char);  // Output: 設

Java:

char c = '\u8A2D';
System.out.println(c);  // Output: 設

JSON:

{"text": "\u8A2D"}  // Value: 設

Python:

char = '\u8A2D'
print(char)  # Output: 設

Perl:

my $char = "\x{8A2D}";
print $char;  # Output: 設

PHP:

$char = "\x{8A2D}";
echo $char;  // Output: 設

Ruby:

char = "\u{8A2D}"
puts char  # Output: 設

Rust:

let c = '\u{8A2D}';
println!("{}", c);  // Output: 設

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008A2D";  /* Display: 設 */
}

HTML Decimal:

<p>HTML decimal: &#35373;</p>  <!-- Display: 設 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A2D;</p>  <!-- Display: 設 -->

URL Encoding:

// 設 URL encoding
https://unicodefinder.com/search.php?query=%E8%A8%AD

Encodings

MD5:

f887f27ffbd6a66266d60ddf24ab95e3

SHA1:

266fb7583f2f08e00aa9dfe8fc1ede098faeec67

Base64:

6Kit