Unicode Finder

"甶" U+7536(CJK UNIFIED IDEOGRAPH-7536)

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

Programming

C
\u7536
JavaScript
\u7536
Java
\u7536
Json
\u7536
Python
\u7536
Perl
\x{7536}
PHP
\x{7536}
Ruby
\u{7536}
Rust
\u{7536}
Go
\u7536

Web

CSS
\007536
HtmlDecimal
甶
HtmlHexadecimal
甶
Url
%E7%94%B6

Code

MD5
e96688ac7e814e8826d5a64e41b64475
Sha1
acfc868717adbf75f8968d3b084f685f82c0b81e
Base64
55S2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7536';
console.log(char);  // Output: 甶

Java:

char c = '\u7536';
System.out.println(c);  // Output: 甶

JSON:

{"text": "\u7536"}  // Value: 甶

Python:

char = '\u7536'
print(char)  # Output: 甶

Perl:

my $char = "\x{7536}";
print $char;  # Output: 甶

PHP:

$char = "\x{7536}";
echo $char;  // Output: 甶

Ruby:

char = "\u{7536}"
puts char  # Output: 甶

Rust:

let c = '\u{7536}';
println!("{}", c);  // Output: 甶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007536";  /* Display: 甶 */
}

HTML Decimal:

<p>HTML decimal: &#30006;</p>  <!-- Display: 甶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7536;</p>  <!-- Display: 甶 -->

URL Encoding:

// 甶 URL encoding
https://unicodefinder.com/search.php?query=%E7%94%B6

Encodings

MD5:

e96688ac7e814e8826d5a64e41b64475

SHA1:

acfc868717adbf75f8968d3b084f685f82c0b81e

Base64:

55S2