Unicode Finder

"豓" U+8C53(CJK UNIFIED IDEOGRAPH-8C53)

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

Programming

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

Web

CSS
\008C53
HtmlDecimal
豓
HtmlHexadecimal
豓
Url
%E8%B1%93

Code

MD5
95e12c84c52e500e1cf7349974306037
Sha1
e20e3550a9737af322d851e04dfaf033293fc194
Base64
6LGT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C53';
console.log(char);  // Output: 豓

Java:

char c = '\u8C53';
System.out.println(c);  // Output: 豓

JSON:

{"text": "\u8C53"}  // Value: 豓

Python:

char = '\u8C53'
print(char)  # Output: 豓

Perl:

my $char = "\x{8C53}";
print $char;  # Output: 豓

PHP:

$char = "\x{8C53}";
echo $char;  // Output: 豓

Ruby:

char = "\u{8C53}"
puts char  # Output: 豓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35923;</p>  <!-- Display: 豓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C53;</p>  <!-- Display: 豓 -->

URL Encoding:

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

Encodings

MD5:

95e12c84c52e500e1cf7349974306037

SHA1:

e20e3550a9737af322d851e04dfaf033293fc194

Base64:

6LGT