Unicode Finder

"牴" U+7274(CJK UNIFIED IDEOGRAPH-7274)

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

Programming

C
\u7274
JavaScript
\u7274
Java
\u7274
Json
\u7274
Python
\u7274
Perl
\x{7274}
PHP
\x{7274}
Ruby
\u{7274}
Rust
\u{7274}
Go
\u7274

Web

CSS
\007274
HtmlDecimal
牴
HtmlHexadecimal
牴
Url
%E7%89%B4

Code

MD5
fc53f6fae06854dd5b2c046a7bea2aed
Sha1
54f4ffc174be3c1d2c6b981e8de2701cd78d76de
Base64
54m0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7274';
console.log(char);  // Output: 牴

Java:

char c = '\u7274';
System.out.println(c);  // Output: 牴

JSON:

{"text": "\u7274"}  // Value: 牴

Python:

char = '\u7274'
print(char)  # Output: 牴

Perl:

my $char = "\x{7274}";
print $char;  # Output: 牴

PHP:

$char = "\x{7274}";
echo $char;  // Output: 牴

Ruby:

char = "\u{7274}"
puts char  # Output: 牴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007274";  /* Display: 牴 */
}

HTML Decimal:

<p>HTML decimal: &#29300;</p>  <!-- Display: 牴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7274;</p>  <!-- Display: 牴 -->

URL Encoding:

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

Encodings

MD5:

fc53f6fae06854dd5b2c046a7bea2aed

SHA1:

54f4ffc174be3c1d2c6b981e8de2701cd78d76de

Base64:

54m0