Unicode Finder

"竃" U+7AC3(CJK UNIFIED IDEOGRAPH-7AC3)

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

Programming

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

Web

CSS
\007AC3
HtmlDecimal
竃
HtmlHexadecimal
竃
Url
%E7%AB%83

Code

MD5
808c2046670c8168009a0cb024de2382
Sha1
f646e9a6af9457cf16f61417595960be53150dbb
Base64
56uD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AC3';
console.log(char);  // Output: 竃

Java:

char c = '\u7AC3';
System.out.println(c);  // Output: 竃

JSON:

{"text": "\u7AC3"}  // Value: 竃

Python:

char = '\u7AC3'
print(char)  # Output: 竃

Perl:

my $char = "\x{7AC3}";
print $char;  # Output: 竃

PHP:

$char = "\x{7AC3}";
echo $char;  // Output: 竃

Ruby:

char = "\u{7AC3}"
puts char  # Output: 竃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31427;</p>  <!-- Display: 竃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AC3;</p>  <!-- Display: 竃 -->

URL Encoding:

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

Encodings

MD5:

808c2046670c8168009a0cb024de2382

SHA1:

f646e9a6af9457cf16f61417595960be53150dbb

Base64:

56uD