Unicode Finder

"竬" U+7AEC(CJK UNIFIED IDEOGRAPH-7AEC)

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

Programming

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

Web

CSS
\007AEC
HtmlDecimal
竬
HtmlHexadecimal
竬
Url
%E7%AB%AC

Code

MD5
cd75c2f5d84208329f5d1bd37f7487f4
Sha1
105d08509bc6a308cbc04d33e5d620c5674f64a1
Base64
56us

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AEC';
console.log(char);  // Output: 竬

Java:

char c = '\u7AEC';
System.out.println(c);  // Output: 竬

JSON:

{"text": "\u7AEC"}  // Value: 竬

Python:

char = '\u7AEC'
print(char)  # Output: 竬

Perl:

my $char = "\x{7AEC}";
print $char;  # Output: 竬

PHP:

$char = "\x{7AEC}";
echo $char;  // Output: 竬

Ruby:

char = "\u{7AEC}"
puts char  # Output: 竬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31468;</p>  <!-- Display: 竬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AEC;</p>  <!-- Display: 竬 -->

URL Encoding:

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

Encodings

MD5:

cd75c2f5d84208329f5d1bd37f7487f4

SHA1:

105d08509bc6a308cbc04d33e5d620c5674f64a1

Base64:

56us