Unicode Finder

"犈" U+7288(CJK UNIFIED IDEOGRAPH-7288)

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

Programming

C
\u7288
JavaScript
\u7288
Java
\u7288
Json
\u7288
Python
\u7288
Perl
\x{7288}
PHP
\x{7288}
Ruby
\u{7288}
Rust
\u{7288}
Go
\u7288

Web

CSS
\007288
HtmlDecimal
犈
HtmlHexadecimal
犈
Url
%E7%8A%88

Code

MD5
69cef98a0b53636192457e9194eb2d18
Sha1
1f14130ba65c7b39db0a3d384d366bf060f848fb
Base64
54qI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7288';
console.log(char);  // Output: 犈

Java:

char c = '\u7288';
System.out.println(c);  // Output: 犈

JSON:

{"text": "\u7288"}  // Value: 犈

Python:

char = '\u7288'
print(char)  # Output: 犈

Perl:

my $char = "\x{7288}";
print $char;  # Output: 犈

PHP:

$char = "\x{7288}";
echo $char;  // Output: 犈

Ruby:

char = "\u{7288}"
puts char  # Output: 犈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007288";  /* Display: 犈 */
}

HTML Decimal:

<p>HTML decimal: &#29320;</p>  <!-- Display: 犈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7288;</p>  <!-- Display: 犈 -->

URL Encoding:

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

Encodings

MD5:

69cef98a0b53636192457e9194eb2d18

SHA1:

1f14130ba65c7b39db0a3d384d366bf060f848fb

Base64:

54qI