Unicode Finder

"稘" U+7A18(CJK UNIFIED IDEOGRAPH-7A18)

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

Programming

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

Web

CSS
\007A18
HtmlDecimal
稘
HtmlHexadecimal
稘
Url
%E7%A8%98

Code

MD5
8ed81c2c4890ee7d95304c9cc73aa195
Sha1
318b29d60e46d3dad1bbf49af51d46ae97d9e4f8
Base64
56iY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7A18';
console.log(char);  // Output: 稘

Java:

char c = '\u7A18';
System.out.println(c);  // Output: 稘

JSON:

{"text": "\u7A18"}  // Value: 稘

Python:

char = '\u7A18'
print(char)  # Output: 稘

Perl:

my $char = "\x{7A18}";
print $char;  # Output: 稘

PHP:

$char = "\x{7A18}";
echo $char;  // Output: 稘

Ruby:

char = "\u{7A18}"
puts char  # Output: 稘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31256;</p>  <!-- Display: 稘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A18;</p>  <!-- Display: 稘 -->

URL Encoding:

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

Encodings

MD5:

8ed81c2c4890ee7d95304c9cc73aa195

SHA1:

318b29d60e46d3dad1bbf49af51d46ae97d9e4f8

Base64:

56iY