Unicode Finder

"牐" U+7250(CJK UNIFIED IDEOGRAPH-7250)

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

Programming

C
\u7250
JavaScript
\u7250
Java
\u7250
Json
\u7250
Python
\u7250
Perl
\x{7250}
PHP
\x{7250}
Ruby
\u{7250}
Rust
\u{7250}
Go
\u7250

Web

CSS
\007250
HtmlDecimal
牐
HtmlHexadecimal
牐
Url
%E7%89%90

Code

MD5
7f983d9b83c63e49ed00a76b5951b2ba
Sha1
e50a07108110ab0dc824f3611930a3b2eec8ae4a
Base64
54mQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7250';
console.log(char);  // Output: 牐

Java:

char c = '\u7250';
System.out.println(c);  // Output: 牐

JSON:

{"text": "\u7250"}  // Value: 牐

Python:

char = '\u7250'
print(char)  # Output: 牐

Perl:

my $char = "\x{7250}";
print $char;  # Output: 牐

PHP:

$char = "\x{7250}";
echo $char;  // Output: 牐

Ruby:

char = "\u{7250}"
puts char  # Output: 牐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007250";  /* Display: 牐 */
}

HTML Decimal:

<p>HTML decimal: &#29264;</p>  <!-- Display: 牐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7250;</p>  <!-- Display: 牐 -->

URL Encoding:

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

Encodings

MD5:

7f983d9b83c63e49ed00a76b5951b2ba

SHA1:

e50a07108110ab0dc824f3611930a3b2eec8ae4a

Base64:

54mQ