Unicode Finder

"豲" U+8C72(CJK UNIFIED IDEOGRAPH-8C72)

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

Programming

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

Web

CSS
\008C72
HtmlDecimal
豲
HtmlHexadecimal
豲
Url
%E8%B1%B2

Code

MD5
5204f77b9dda42e5b140564cb3c6a527
Sha1
7bb7537c1e08e37174f7c4d1108ac48d8053063f
Base64
6LGy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8C72';
console.log(char);  // Output: 豲

Java:

char c = '\u8C72';
System.out.println(c);  // Output: 豲

JSON:

{"text": "\u8C72"}  // Value: 豲

Python:

char = '\u8C72'
print(char)  # Output: 豲

Perl:

my $char = "\x{8C72}";
print $char;  # Output: 豲

PHP:

$char = "\x{8C72}";
echo $char;  // Output: 豲

Ruby:

char = "\u{8C72}"
puts char  # Output: 豲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35954;</p>  <!-- Display: 豲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C72;</p>  <!-- Display: 豲 -->

URL Encoding:

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

Encodings

MD5:

5204f77b9dda42e5b140564cb3c6a527

SHA1:

7bb7537c1e08e37174f7c4d1108ac48d8053063f

Base64:

6LGy