Unicode Finder

"竫" U+7AEB(CJK UNIFIED IDEOGRAPH-7AEB)

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

Programming

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

Web

CSS
\007AEB
HtmlDecimal
竫
HtmlHexadecimal
竫
Url
%E7%AB%AB

Code

MD5
c58c519f99519966a92995c09635cb9e
Sha1
fc766c84ba8e0bcc7342fa49b0dd0447a4456131
Base64
56ur

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AEB';
console.log(char);  // Output: 竫

Java:

char c = '\u7AEB';
System.out.println(c);  // Output: 竫

JSON:

{"text": "\u7AEB"}  // Value: 竫

Python:

char = '\u7AEB'
print(char)  # Output: 竫

Perl:

my $char = "\x{7AEB}";
print $char;  # Output: 竫

PHP:

$char = "\x{7AEB}";
echo $char;  // Output: 竫

Ruby:

char = "\u{7AEB}"
puts char  # Output: 竫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31467;</p>  <!-- Display: 竫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AEB;</p>  <!-- Display: 竫 -->

URL Encoding:

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

Encodings

MD5:

c58c519f99519966a92995c09635cb9e

SHA1:

fc766c84ba8e0bcc7342fa49b0dd0447a4456131

Base64:

56ur