Unicode Finder

"牋" U+724B(CJK UNIFIED IDEOGRAPH-724B)

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

Programming

C
\u724B
JavaScript
\u724B
Java
\u724B
Json
\u724B
Python
\u724B
Perl
\x{724B}
PHP
\x{724B}
Ruby
\u{724B}
Rust
\u{724B}
Go
\u724B

Web

CSS
\00724B
HtmlDecimal
牋
HtmlHexadecimal
牋
Url
%E7%89%8B

Code

MD5
e364e2e801516bd5c78dcb54ade859ce
Sha1
642d0bf0ab25f6653e6a88469543f0f3ba6ff6d7
Base64
54mL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u724B';
console.log(char);  // Output: 牋

Java:

char c = '\u724B';
System.out.println(c);  // Output: 牋

JSON:

{"text": "\u724B"}  // Value: 牋

Python:

char = '\u724B'
print(char)  # Output: 牋

Perl:

my $char = "\x{724B}";
print $char;  # Output: 牋

PHP:

$char = "\x{724B}";
echo $char;  // Output: 牋

Ruby:

char = "\u{724B}"
puts char  # Output: 牋

Rust:

let c = '\u{724B}';
println!("{}", c);  // Output: 牋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00724B";  /* Display: 牋 */
}

HTML Decimal:

<p>HTML decimal: &#29259;</p>  <!-- Display: 牋 -->

HTML Hexadecimal:

<p>HTML hex: &#x724B;</p>  <!-- Display: 牋 -->

URL Encoding:

// 牋 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%8B

Encodings

MD5:

e364e2e801516bd5c78dcb54ade859ce

SHA1:

642d0bf0ab25f6653e6a88469543f0f3ba6ff6d7

Base64:

54mL