Unicode Finder

"竵" U+7AF5(CJK UNIFIED IDEOGRAPH-7AF5)

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

Programming

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

Web

CSS
\007AF5
HtmlDecimal
竵
HtmlHexadecimal
竵
Url
%E7%AB%B5

Code

MD5
d3919931c4c9ab4379f370474f131d8d
Sha1
d2102cea0740baa1a36df8695e3b57475100be01
Base64
56u1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AF5';
console.log(char);  // Output: 竵

Java:

char c = '\u7AF5';
System.out.println(c);  // Output: 竵

JSON:

{"text": "\u7AF5"}  // Value: 竵

Python:

char = '\u7AF5'
print(char)  # Output: 竵

Perl:

my $char = "\x{7AF5}";
print $char;  # Output: 竵

PHP:

$char = "\x{7AF5}";
echo $char;  // Output: 竵

Ruby:

char = "\u{7AF5}"
puts char  # Output: 竵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31477;</p>  <!-- Display: 竵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AF5;</p>  <!-- Display: 竵 -->

URL Encoding:

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

Encodings

MD5:

d3919931c4c9ab4379f370474f131d8d

SHA1:

d2102cea0740baa1a36df8695e3b57475100be01

Base64:

56u1