Unicode Finder

"牂" U+7242(CJK UNIFIED IDEOGRAPH-7242)

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

Programming

C
\u7242
JavaScript
\u7242
Java
\u7242
Json
\u7242
Python
\u7242
Perl
\x{7242}
PHP
\x{7242}
Ruby
\u{7242}
Rust
\u{7242}
Go
\u7242

Web

CSS
\007242
HtmlDecimal
牂
HtmlHexadecimal
牂
Url
%E7%89%82

Code

MD5
886c5eda6301f4f23f1046fa6870f163
Sha1
be6a3ee461ac86169455bb5591286d05b5044422
Base64
54mC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7242';
console.log(char);  // Output: 牂

Java:

char c = '\u7242';
System.out.println(c);  // Output: 牂

JSON:

{"text": "\u7242"}  // Value: 牂

Python:

char = '\u7242'
print(char)  # Output: 牂

Perl:

my $char = "\x{7242}";
print $char;  # Output: 牂

PHP:

$char = "\x{7242}";
echo $char;  // Output: 牂

Ruby:

char = "\u{7242}"
puts char  # Output: 牂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007242";  /* Display: 牂 */
}

HTML Decimal:

<p>HTML decimal: &#29250;</p>  <!-- Display: 牂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7242;</p>  <!-- Display: 牂 -->

URL Encoding:

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

Encodings

MD5:

886c5eda6301f4f23f1046fa6870f163

SHA1:

be6a3ee461ac86169455bb5591286d05b5044422

Base64:

54mC