Unicode Finder

"牷" U+7277(CJK UNIFIED IDEOGRAPH-7277)

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

Programming

C
\u7277
JavaScript
\u7277
Java
\u7277
Json
\u7277
Python
\u7277
Perl
\x{7277}
PHP
\x{7277}
Ruby
\u{7277}
Rust
\u{7277}
Go
\u7277

Web

CSS
\007277
HtmlDecimal
牷
HtmlHexadecimal
牷
Url
%E7%89%B7

Code

MD5
7b6e598d7b0d523d7ce867712befd156
Sha1
00517afe530be69ec6599c13bce5d9226eeb8dac
Base64
54m3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7277';
console.log(char);  // Output: 牷

Java:

char c = '\u7277';
System.out.println(c);  // Output: 牷

JSON:

{"text": "\u7277"}  // Value: 牷

Python:

char = '\u7277'
print(char)  # Output: 牷

Perl:

my $char = "\x{7277}";
print $char;  # Output: 牷

PHP:

$char = "\x{7277}";
echo $char;  // Output: 牷

Ruby:

char = "\u{7277}"
puts char  # Output: 牷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007277";  /* Display: 牷 */
}

HTML Decimal:

<p>HTML decimal: &#29303;</p>  <!-- Display: 牷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7277;</p>  <!-- Display: 牷 -->

URL Encoding:

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

Encodings

MD5:

7b6e598d7b0d523d7ce867712befd156

SHA1:

00517afe530be69ec6599c13bce5d9226eeb8dac

Base64:

54m3