Unicode Finder

"对" U+5BF9(CJK UNIFIED IDEOGRAPH-5BF9)

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

Programming

C
\u5BF9
JavaScript
\u5BF9
Java
\u5BF9
Json
\u5BF9
Python
\u5BF9
Perl
\x{5BF9}
PHP
\x{5BF9}
Ruby
\u{5BF9}
Rust
\u{5BF9}
Go
\u5BF9

Web

CSS
\005BF9
HtmlDecimal
对
HtmlHexadecimal
对
Url
%E5%AF%B9

Code

MD5
00447bbe5e22ceccd0427b121549f82c
Sha1
02b83ec7ccc3e0f1d846a7767021043889dd33d1
Base64
5a+5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5BF9';
console.log(char);  // Output: 对

Java:

char c = '\u5BF9';
System.out.println(c);  // Output: 对

JSON:

{"text": "\u5BF9"}  // Value: 对

Python:

char = '\u5BF9'
print(char)  # Output: 对

Perl:

my $char = "\x{5BF9}";
print $char;  # Output: 对

PHP:

$char = "\x{5BF9}";
echo $char;  // Output: 对

Ruby:

char = "\u{5BF9}"
puts char  # Output: 对

Rust:

let c = '\u{5BF9}';
println!("{}", c);  // Output: 对

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BF9";  /* Display: 对 */
}

HTML Decimal:

<p>HTML decimal: &#23545;</p>  <!-- Display: 对 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BF9;</p>  <!-- Display: 对 -->

URL Encoding:

// 对 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%B9

Encodings

MD5:

00447bbe5e22ceccd0427b121549f82c

SHA1:

02b83ec7ccc3e0f1d846a7767021043889dd33d1

Base64:

5a+5