Unicode Finder

"牥" U+7265(CJK UNIFIED IDEOGRAPH-7265)

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

Programming

C
\u7265
JavaScript
\u7265
Java
\u7265
Json
\u7265
Python
\u7265
Perl
\x{7265}
PHP
\x{7265}
Ruby
\u{7265}
Rust
\u{7265}
Go
\u7265

Web

CSS
\007265
HtmlDecimal
牥
HtmlHexadecimal
牥
Url
%E7%89%A5

Code

MD5
219a50cda18ed6f71aa1422b682ddf48
Sha1
321c1eab53755ec9a8964cc581207c2ba0d81bab
Base64
54ml

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7265';
console.log(char);  // Output: 牥

Java:

char c = '\u7265';
System.out.println(c);  // Output: 牥

JSON:

{"text": "\u7265"}  // Value: 牥

Python:

char = '\u7265'
print(char)  # Output: 牥

Perl:

my $char = "\x{7265}";
print $char;  # Output: 牥

PHP:

$char = "\x{7265}";
echo $char;  // Output: 牥

Ruby:

char = "\u{7265}"
puts char  # Output: 牥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007265";  /* Display: 牥 */
}

HTML Decimal:

<p>HTML decimal: &#29285;</p>  <!-- Display: 牥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7265;</p>  <!-- Display: 牥 -->

URL Encoding:

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

Encodings

MD5:

219a50cda18ed6f71aa1422b682ddf48

SHA1:

321c1eab53755ec9a8964cc581207c2ba0d81bab

Base64:

54ml