Unicode Finder

"豏" U+8C4F(CJK UNIFIED IDEOGRAPH-8C4F)

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

Programming

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

Web

CSS
\008C4F
HtmlDecimal
豏
HtmlHexadecimal
豏
Url
%E8%B1%8F

Code

MD5
cb46111eda2bb319d293f89c47d1013a
Sha1
c536b6c3979737cc1bcd13705d1ef5de2ceb47e2
Base64
6LGP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C4F';
console.log(char);  // Output: 豏

Java:

char c = '\u8C4F';
System.out.println(c);  // Output: 豏

JSON:

{"text": "\u8C4F"}  // Value: 豏

Python:

char = '\u8C4F'
print(char)  # Output: 豏

Perl:

my $char = "\x{8C4F}";
print $char;  # Output: 豏

PHP:

$char = "\x{8C4F}";
echo $char;  // Output: 豏

Ruby:

char = "\u{8C4F}"
puts char  # Output: 豏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35919;</p>  <!-- Display: 豏 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C4F;</p>  <!-- Display: 豏 -->

URL Encoding:

// 豏 URL encoding
https://unicodefinder.com/search.php?query=%E8%B1%8F

Encodings

MD5:

cb46111eda2bb319d293f89c47d1013a

SHA1:

c536b6c3979737cc1bcd13705d1ef5de2ceb47e2

Base64:

6LGP