Unicode Finder

"豢" U+8C62(CJK UNIFIED IDEOGRAPH-8C62)

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

Programming

C
\u8C62
JavaScript
\u8C62
Java
\u8C62
Json
\u8C62
Python
\u8C62
Perl
\x{8C62}
PHP
\x{8C62}
Ruby
\u{8C62}
Rust
\u{8C62}
Go
\u8C62

Web

CSS
\008C62
HtmlDecimal
豢
HtmlHexadecimal
豢
Url
%E8%B1%A2

Code

MD5
9972aed3c58b52a218f8e783c0bb2553
Sha1
5d3c19875e7409245e3f76371b7771aed70e4a79
Base64
6LGi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8C62';
console.log(char);  // Output: 豢

Java:

char c = '\u8C62';
System.out.println(c);  // Output: 豢

JSON:

{"text": "\u8C62"}  // Value: 豢

Python:

char = '\u8C62'
print(char)  # Output: 豢

Perl:

my $char = "\x{8C62}";
print $char;  # Output: 豢

PHP:

$char = "\x{8C62}";
echo $char;  // Output: 豢

Ruby:

char = "\u{8C62}"
puts char  # Output: 豢

Rust:

let c = '\u{8C62}';
println!("{}", c);  // Output: 豢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008C62";  /* Display: 豢 */
}

HTML Decimal:

<p>HTML decimal: &#35938;</p>  <!-- Display: 豢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C62;</p>  <!-- Display: 豢 -->

URL Encoding:

// 豢 URL encoding
https://unicodefinder.com/search.php?query=%E8%B1%A2

Encodings

MD5:

9972aed3c58b52a218f8e783c0bb2553

SHA1:

5d3c19875e7409245e3f76371b7771aed70e4a79

Base64:

6LGi