Unicode Finder

"竄" U+7AC4(CJK UNIFIED IDEOGRAPH-7AC4)

U+7AC4
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7AC4

Programming

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

Web

CSS
\007AC4
HtmlDecimal
竄
HtmlHexadecimal
竄
Url
%E7%AB%84

Code

MD5
8d8ffa583cbfa9523e3c9c954a1adb5c
Sha1
3c03f301a0209a4d95f2baa1126236bf76a47f8c
Base64
56uE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AC4';
console.log(char);  // Output: 竄

Java:

char c = '\u7AC4';
System.out.println(c);  // Output: 竄

JSON:

{"text": "\u7AC4"}  // Value: 竄

Python:

char = '\u7AC4'
print(char)  # Output: 竄

Perl:

my $char = "\x{7AC4}";
print $char;  # Output: 竄

PHP:

$char = "\x{7AC4}";
echo $char;  // Output: 竄

Ruby:

char = "\u{7AC4}"
puts char  # Output: 竄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31428;</p>  <!-- Display: 竄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AC4;</p>  <!-- Display: 竄 -->

URL Encoding:

// 竄 URL encoding
https://unicodefinder.com/search.php?query=%E7%AB%84

Encodings

MD5:

8d8ffa583cbfa9523e3c9c954a1adb5c

SHA1:

3c03f301a0209a4d95f2baa1126236bf76a47f8c

Base64:

56uE