Unicode Finder

"犂" U+7282(CJK UNIFIED IDEOGRAPH-7282)

U+7282
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7282

Programming

C
\u7282
JavaScript
\u7282
Java
\u7282
Json
\u7282
Python
\u7282
Perl
\x{7282}
PHP
\x{7282}
Ruby
\u{7282}
Rust
\u{7282}
Go
\u7282

Web

CSS
\007282
HtmlDecimal
犂
HtmlHexadecimal
犂
Url
%E7%8A%82

Code

MD5
9e1207b4a6f96c99dabbc02f0a09ce84
Sha1
e3c1c1ba4d313bfe46f58b590c882a41e5296fa8
Base64
54qC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7282';
console.log(char);  // Output: 犂

Java:

char c = '\u7282';
System.out.println(c);  // Output: 犂

JSON:

{"text": "\u7282"}  // Value: 犂

Python:

char = '\u7282'
print(char)  # Output: 犂

Perl:

my $char = "\x{7282}";
print $char;  # Output: 犂

PHP:

$char = "\x{7282}";
echo $char;  // Output: 犂

Ruby:

char = "\u{7282}"
puts char  # Output: 犂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007282";  /* Display: 犂 */
}

HTML Decimal:

<p>HTML decimal: &#29314;</p>  <!-- Display: 犂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7282;</p>  <!-- Display: 犂 -->

URL Encoding:

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

Encodings

MD5:

9e1207b4a6f96c99dabbc02f0a09ce84

SHA1:

e3c1c1ba4d313bfe46f58b590c882a41e5296fa8

Base64:

54qC