Unicode Finder

"犃" U+7283(CJK UNIFIED IDEOGRAPH-7283)

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

Programming

C
\u7283
JavaScript
\u7283
Java
\u7283
Json
\u7283
Python
\u7283
Perl
\x{7283}
PHP
\x{7283}
Ruby
\u{7283}
Rust
\u{7283}
Go
\u7283

Web

CSS
\007283
HtmlDecimal
犃
HtmlHexadecimal
犃
Url
%E7%8A%83

Code

MD5
500f11c62e3b92928203fef487657890
Sha1
fc6a7df15c12f9749fbebdb0d8a2ba51fd302f71
Base64
54qD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7283';
console.log(char);  // Output: 犃

Java:

char c = '\u7283';
System.out.println(c);  // Output: 犃

JSON:

{"text": "\u7283"}  // Value: 犃

Python:

char = '\u7283'
print(char)  # Output: 犃

Perl:

my $char = "\x{7283}";
print $char;  # Output: 犃

PHP:

$char = "\x{7283}";
echo $char;  // Output: 犃

Ruby:

char = "\u{7283}"
puts char  # Output: 犃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007283";  /* Display: 犃 */
}

HTML Decimal:

<p>HTML decimal: &#29315;</p>  <!-- Display: 犃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7283;</p>  <!-- Display: 犃 -->

URL Encoding:

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

Encodings

MD5:

500f11c62e3b92928203fef487657890

SHA1:

fc6a7df15c12f9749fbebdb0d8a2ba51fd302f71

Base64:

54qD