Unicode Finder

"犉" U+7289(CJK UNIFIED IDEOGRAPH-7289)

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

Programming

C
\u7289
JavaScript
\u7289
Java
\u7289
Json
\u7289
Python
\u7289
Perl
\x{7289}
PHP
\x{7289}
Ruby
\u{7289}
Rust
\u{7289}
Go
\u7289

Web

CSS
\007289
HtmlDecimal
犉
HtmlHexadecimal
犉
Url
%E7%8A%89

Code

MD5
4766ad32b52aa9d5a5d23f0fb9106d25
Sha1
0486f3d345f63d48760a00d5be1381aae8503a4e
Base64
54qJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7289';
console.log(char);  // Output: 犉

Java:

char c = '\u7289';
System.out.println(c);  // Output: 犉

JSON:

{"text": "\u7289"}  // Value: 犉

Python:

char = '\u7289'
print(char)  # Output: 犉

Perl:

my $char = "\x{7289}";
print $char;  # Output: 犉

PHP:

$char = "\x{7289}";
echo $char;  // Output: 犉

Ruby:

char = "\u{7289}"
puts char  # Output: 犉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007289";  /* Display: 犉 */
}

HTML Decimal:

<p>HTML decimal: &#29321;</p>  <!-- Display: 犉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7289;</p>  <!-- Display: 犉 -->

URL Encoding:

// 犉 URL encoding
https://unicodefinder.com/search.php?query=%E7%8A%89

Encodings

MD5:

4766ad32b52aa9d5a5d23f0fb9106d25

SHA1:

0486f3d345f63d48760a00d5be1381aae8503a4e

Base64:

54qJ