Unicode Finder

"犇" U+7287(CJK UNIFIED IDEOGRAPH-7287)

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

Programming

C
\u7287
JavaScript
\u7287
Java
\u7287
Json
\u7287
Python
\u7287
Perl
\x{7287}
PHP
\x{7287}
Ruby
\u{7287}
Rust
\u{7287}
Go
\u7287

Web

CSS
\007287
HtmlDecimal
犇
HtmlHexadecimal
犇
Url
%E7%8A%87

Code

MD5
e4954f6f7dd4144137888d5f361bd4f3
Sha1
32c1304894d7be8b259d844b6f6d59eb64376978
Base64
54qH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7287';
console.log(char);  // Output: 犇

Java:

char c = '\u7287';
System.out.println(c);  // Output: 犇

JSON:

{"text": "\u7287"}  // Value: 犇

Python:

char = '\u7287'
print(char)  # Output: 犇

Perl:

my $char = "\x{7287}";
print $char;  # Output: 犇

PHP:

$char = "\x{7287}";
echo $char;  // Output: 犇

Ruby:

char = "\u{7287}"
puts char  # Output: 犇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007287";  /* Display: 犇 */
}

HTML Decimal:

<p>HTML decimal: &#29319;</p>  <!-- Display: 犇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7287;</p>  <!-- Display: 犇 -->

URL Encoding:

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

Encodings

MD5:

e4954f6f7dd4144137888d5f361bd4f3

SHA1:

32c1304894d7be8b259d844b6f6d59eb64376978

Base64:

54qH