Unicode Finder

"牜" U+725C(CJK UNIFIED IDEOGRAPH-725C)

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

Programming

C
\u725C
JavaScript
\u725C
Java
\u725C
Json
\u725C
Python
\u725C
Perl
\x{725C}
PHP
\x{725C}
Ruby
\u{725C}
Rust
\u{725C}
Go
\u725C

Web

CSS
\00725C
HtmlDecimal
牜
HtmlHexadecimal
牜
Url
%E7%89%9C

Code

MD5
846d31f334ca5340ab1a540f1733e1c1
Sha1
580b0edbc740c46580963d13a9f9cd8d13ba0848
Base64
54mc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u725C';
console.log(char);  // Output: 牜

Java:

char c = '\u725C';
System.out.println(c);  // Output: 牜

JSON:

{"text": "\u725C"}  // Value: 牜

Python:

char = '\u725C'
print(char)  # Output: 牜

Perl:

my $char = "\x{725C}";
print $char;  # Output: 牜

PHP:

$char = "\x{725C}";
echo $char;  // Output: 牜

Ruby:

char = "\u{725C}"
puts char  # Output: 牜

Rust:

let c = '\u{725C}';
println!("{}", c);  // Output: 牜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00725C";  /* Display: 牜 */
}

HTML Decimal:

<p>HTML decimal: &#29276;</p>  <!-- Display: 牜 -->

HTML Hexadecimal:

<p>HTML hex: &#x725C;</p>  <!-- Display: 牜 -->

URL Encoding:

// 牜 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%9C

Encodings

MD5:

846d31f334ca5340ab1a540f1733e1c1

SHA1:

580b0edbc740c46580963d13a9f9cd8d13ba0848

Base64:

54mc