Unicode Finder

"牵" U+7275(CJK UNIFIED IDEOGRAPH-7275)

U+7275
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7275

Programming

C
\u7275
JavaScript
\u7275
Java
\u7275
Json
\u7275
Python
\u7275
Perl
\x{7275}
PHP
\x{7275}
Ruby
\u{7275}
Rust
\u{7275}
Go
\u7275

Web

CSS
\007275
HtmlDecimal
牵
HtmlHexadecimal
牵
Url
%E7%89%B5

Code

MD5
ffa82e9a3350e867bd5ca1d7933f1237
Sha1
6c56b49c805ebd47f90d2fbc309c760cf6622eee
Base64
54m1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7275';
console.log(char);  // Output: 牵

Java:

char c = '\u7275';
System.out.println(c);  // Output: 牵

JSON:

{"text": "\u7275"}  // Value: 牵

Python:

char = '\u7275'
print(char)  # Output: 牵

Perl:

my $char = "\x{7275}";
print $char;  # Output: 牵

PHP:

$char = "\x{7275}";
echo $char;  // Output: 牵

Ruby:

char = "\u{7275}"
puts char  # Output: 牵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007275";  /* Display: 牵 */
}

HTML Decimal:

<p>HTML decimal: &#29301;</p>  <!-- Display: 牵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7275;</p>  <!-- Display: 牵 -->

URL Encoding:

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

Encodings

MD5:

ffa82e9a3350e867bd5ca1d7933f1237

SHA1:

6c56b49c805ebd47f90d2fbc309c760cf6622eee

Base64:

54m1