Unicode Finder

"竰" U+7AF0(CJK UNIFIED IDEOGRAPH-7AF0)

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

Programming

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

Web

CSS
\007AF0
HtmlDecimal
竰
HtmlHexadecimal
竰
Url
%E7%AB%B0

Code

MD5
ee3cfc330e7fd4addfd4af766f3c24fe
Sha1
ea348a9b3b22f260d485143070d87b64eae599ad
Base64
56uw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AF0';
console.log(char);  // Output: 竰

Java:

char c = '\u7AF0';
System.out.println(c);  // Output: 竰

JSON:

{"text": "\u7AF0"}  // Value: 竰

Python:

char = '\u7AF0'
print(char)  # Output: 竰

Perl:

my $char = "\x{7AF0}";
print $char;  # Output: 竰

PHP:

$char = "\x{7AF0}";
echo $char;  // Output: 竰

Ruby:

char = "\u{7AF0}"
puts char  # Output: 竰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31472;</p>  <!-- Display: 竰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AF0;</p>  <!-- Display: 竰 -->

URL Encoding:

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

Encodings

MD5:

ee3cfc330e7fd4addfd4af766f3c24fe

SHA1:

ea348a9b3b22f260d485143070d87b64eae599ad

Base64:

56uw