Unicode Finder

"牣" U+7263(CJK UNIFIED IDEOGRAPH-7263)

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

Programming

C
\u7263
JavaScript
\u7263
Java
\u7263
Json
\u7263
Python
\u7263
Perl
\x{7263}
PHP
\x{7263}
Ruby
\u{7263}
Rust
\u{7263}
Go
\u7263

Web

CSS
\007263
HtmlDecimal
牣
HtmlHexadecimal
牣
Url
%E7%89%A3

Code

MD5
31db60098ffbff7aa7d082f421850b60
Sha1
9a771d4405d259032985c62544943e411cc2447b
Base64
54mj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7263';
console.log(char);  // Output: 牣

Java:

char c = '\u7263';
System.out.println(c);  // Output: 牣

JSON:

{"text": "\u7263"}  // Value: 牣

Python:

char = '\u7263'
print(char)  # Output: 牣

Perl:

my $char = "\x{7263}";
print $char;  # Output: 牣

PHP:

$char = "\x{7263}";
echo $char;  // Output: 牣

Ruby:

char = "\u{7263}"
puts char  # Output: 牣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007263";  /* Display: 牣 */
}

HTML Decimal:

<p>HTML decimal: &#29283;</p>  <!-- Display: 牣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7263;</p>  <!-- Display: 牣 -->

URL Encoding:

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

Encodings

MD5:

31db60098ffbff7aa7d082f421850b60

SHA1:

9a771d4405d259032985c62544943e411cc2447b

Base64:

54mj