Unicode Finder

"竅" U+7AC5(CJK UNIFIED IDEOGRAPH-7AC5)

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

Programming

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

Web

CSS
\007AC5
HtmlDecimal
竅
HtmlHexadecimal
竅
Url
%E7%AB%85

Code

MD5
9705ff7ebaaaba87e54089ed13522ba1
Sha1
506df78d89efe1f25b529a035af57638270fa624
Base64
56uF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AC5';
console.log(char);  // Output: 竅

Java:

char c = '\u7AC5';
System.out.println(c);  // Output: 竅

JSON:

{"text": "\u7AC5"}  // Value: 竅

Python:

char = '\u7AC5'
print(char)  # Output: 竅

Perl:

my $char = "\x{7AC5}";
print $char;  # Output: 竅

PHP:

$char = "\x{7AC5}";
echo $char;  // Output: 竅

Ruby:

char = "\u{7AC5}"
puts char  # Output: 竅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31429;</p>  <!-- Display: 竅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AC5;</p>  <!-- Display: 竅 -->

URL Encoding:

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

Encodings

MD5:

9705ff7ebaaaba87e54089ed13522ba1

SHA1:

506df78d89efe1f25b529a035af57638270fa624

Base64:

56uF