Unicode Finder

"牳" U+7273(CJK UNIFIED IDEOGRAPH-7273)

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

Programming

C
\u7273
JavaScript
\u7273
Java
\u7273
Json
\u7273
Python
\u7273
Perl
\x{7273}
PHP
\x{7273}
Ruby
\u{7273}
Rust
\u{7273}
Go
\u7273

Web

CSS
\007273
HtmlDecimal
牳
HtmlHexadecimal
牳
Url
%E7%89%B3

Code

MD5
1f4dbc018e6617e9e6eccb4445a6f102
Sha1
02d155b02d04fba58a66eaef63ecbc579bdf9373
Base64
54mz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7273';
console.log(char);  // Output: 牳

Java:

char c = '\u7273';
System.out.println(c);  // Output: 牳

JSON:

{"text": "\u7273"}  // Value: 牳

Python:

char = '\u7273'
print(char)  # Output: 牳

Perl:

my $char = "\x{7273}";
print $char;  # Output: 牳

PHP:

$char = "\x{7273}";
echo $char;  // Output: 牳

Ruby:

char = "\u{7273}"
puts char  # Output: 牳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007273";  /* Display: 牳 */
}

HTML Decimal:

<p>HTML decimal: &#29299;</p>  <!-- Display: 牳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7273;</p>  <!-- Display: 牳 -->

URL Encoding:

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

Encodings

MD5:

1f4dbc018e6617e9e6eccb4445a6f102

SHA1:

02d155b02d04fba58a66eaef63ecbc579bdf9373

Base64:

54mz