Unicode Finder

"稬" U+7A2C(CJK UNIFIED IDEOGRAPH-7A2C)

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

Programming

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

Web

CSS
\007A2C
HtmlDecimal
稬
HtmlHexadecimal
稬
Url
%E7%A8%AC

Code

MD5
8c1d78715290b3a4893518ff579b43e4
Sha1
df51f2e722d63469e4657e6fc56d7e02c323b0a3
Base64
56is

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7A2C';
console.log(char);  // Output: 稬

Java:

char c = '\u7A2C';
System.out.println(c);  // Output: 稬

JSON:

{"text": "\u7A2C"}  // Value: 稬

Python:

char = '\u7A2C'
print(char)  # Output: 稬

Perl:

my $char = "\x{7A2C}";
print $char;  # Output: 稬

PHP:

$char = "\x{7A2C}";
echo $char;  // Output: 稬

Ruby:

char = "\u{7A2C}"
puts char  # Output: 稬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31276;</p>  <!-- Display: 稬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A2C;</p>  <!-- Display: 稬 -->

URL Encoding:

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

Encodings

MD5:

8c1d78715290b3a4893518ff579b43e4

SHA1:

df51f2e722d63469e4657e6fc56d7e02c323b0a3

Base64:

56is