Unicode Finder

"第" U+7B2C(CJK UNIFIED IDEOGRAPH-7B2C)

U+7B2C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7B2C

Programming

C
\u7B2C
JavaScript
\u7B2C
Java
\u7B2C
Json
\u7B2C
Python
\u7B2C
Perl
\x{7B2C}
PHP
\x{7B2C}
Ruby
\u{7B2C}
Rust
\u{7B2C}
Go
\u7B2C

Web

CSS
\007B2C
HtmlDecimal
第
HtmlHexadecimal
第
Url
%E7%AC%AC

Code

MD5
ac007746080a48f195815c62f8c1570c
Sha1
dae828fe4fb7f7e7d062758512bced91d4373cca
Base64
56ys

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B2C';
console.log(char);  // Output: 第

Java:

char c = '\u7B2C';
System.out.println(c);  // Output: 第

JSON:

{"text": "\u7B2C"}  // Value: 第

Python:

char = '\u7B2C'
print(char)  # Output: 第

Perl:

my $char = "\x{7B2C}";
print $char;  # Output: 第

PHP:

$char = "\x{7B2C}";
echo $char;  // Output: 第

Ruby:

char = "\u{7B2C}"
puts char  # Output: 第

Rust:

let c = '\u{7B2C}';
println!("{}", c);  // Output: 第

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007B2C";  /* Display: 第 */
}

HTML Decimal:

<p>HTML decimal: &#31532;</p>  <!-- Display: 第 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B2C;</p>  <!-- Display: 第 -->

URL Encoding:

// 第 URL encoding
https://unicodefinder.com/search.php?query=%E7%AC%AC

Encodings

MD5:

ac007746080a48f195815c62f8c1570c

SHA1:

dae828fe4fb7f7e7d062758512bced91d4373cca

Base64:

56ys