Unicode Finder

"牑" U+7251(CJK UNIFIED IDEOGRAPH-7251)

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

Programming

C
\u7251
JavaScript
\u7251
Java
\u7251
Json
\u7251
Python
\u7251
Perl
\x{7251}
PHP
\x{7251}
Ruby
\u{7251}
Rust
\u{7251}
Go
\u7251

Web

CSS
\007251
HtmlDecimal
牑
HtmlHexadecimal
牑
Url
%E7%89%91

Code

MD5
b6a947226562dd8994ec9fc37e640cce
Sha1
a2c045e33fac4c337ad0dac6e6de095e84e2c7ab
Base64
54mR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7251';
console.log(char);  // Output: 牑

Java:

char c = '\u7251';
System.out.println(c);  // Output: 牑

JSON:

{"text": "\u7251"}  // Value: 牑

Python:

char = '\u7251'
print(char)  # Output: 牑

Perl:

my $char = "\x{7251}";
print $char;  # Output: 牑

PHP:

$char = "\x{7251}";
echo $char;  // Output: 牑

Ruby:

char = "\u{7251}"
puts char  # Output: 牑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007251";  /* Display: 牑 */
}

HTML Decimal:

<p>HTML decimal: &#29265;</p>  <!-- Display: 牑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7251;</p>  <!-- Display: 牑 -->

URL Encoding:

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

Encodings

MD5:

b6a947226562dd8994ec9fc37e640cce

SHA1:

a2c045e33fac4c337ad0dac6e6de095e84e2c7ab

Base64:

54mR