Unicode Finder

"犓" U+7293(CJK UNIFIED IDEOGRAPH-7293)

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

Programming

C
\u7293
JavaScript
\u7293
Java
\u7293
Json
\u7293
Python
\u7293
Perl
\x{7293}
PHP
\x{7293}
Ruby
\u{7293}
Rust
\u{7293}
Go
\u7293

Web

CSS
\007293
HtmlDecimal
犓
HtmlHexadecimal
犓
Url
%E7%8A%93

Code

MD5
839bdc9538992679622cc7ea81a84658
Sha1
09ae633df3869fa89429afb3b88d85f20d82e02e
Base64
54qT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7293';
console.log(char);  // Output: 犓

Java:

char c = '\u7293';
System.out.println(c);  // Output: 犓

JSON:

{"text": "\u7293"}  // Value: 犓

Python:

char = '\u7293'
print(char)  # Output: 犓

Perl:

my $char = "\x{7293}";
print $char;  # Output: 犓

PHP:

$char = "\x{7293}";
echo $char;  // Output: 犓

Ruby:

char = "\u{7293}"
puts char  # Output: 犓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007293";  /* Display: 犓 */
}

HTML Decimal:

<p>HTML decimal: &#29331;</p>  <!-- Display: 犓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7293;</p>  <!-- Display: 犓 -->

URL Encoding:

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

Encodings

MD5:

839bdc9538992679622cc7ea81a84658

SHA1:

09ae633df3869fa89429afb3b88d85f20d82e02e

Base64:

54qT