Unicode Finder

"牱" U+7271(CJK UNIFIED IDEOGRAPH-7271)

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

Programming

C
\u7271
JavaScript
\u7271
Java
\u7271
Json
\u7271
Python
\u7271
Perl
\x{7271}
PHP
\x{7271}
Ruby
\u{7271}
Rust
\u{7271}
Go
\u7271

Web

CSS
\007271
HtmlDecimal
牱
HtmlHexadecimal
牱
Url
%E7%89%B1

Code

MD5
cad9fbd1108d4299c622ecebc077d36e
Sha1
6821a19140469c9ee9d70df5889a3df1c76154cc
Base64
54mx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7271';
console.log(char);  // Output: 牱

Java:

char c = '\u7271';
System.out.println(c);  // Output: 牱

JSON:

{"text": "\u7271"}  // Value: 牱

Python:

char = '\u7271'
print(char)  # Output: 牱

Perl:

my $char = "\x{7271}";
print $char;  # Output: 牱

PHP:

$char = "\x{7271}";
echo $char;  // Output: 牱

Ruby:

char = "\u{7271}"
puts char  # Output: 牱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007271";  /* Display: 牱 */
}

HTML Decimal:

<p>HTML decimal: &#29297;</p>  <!-- Display: 牱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7271;</p>  <!-- Display: 牱 -->

URL Encoding:

// 牱 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%B1

Encodings

MD5:

cad9fbd1108d4299c622ecebc077d36e

SHA1:

6821a19140469c9ee9d70df5889a3df1c76154cc

Base64:

54mx