Unicode Finder

"谏" U+8C0F(CJK UNIFIED IDEOGRAPH-8C0F)

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

Programming

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

Web

CSS
\008C0F
HtmlDecimal
谏
HtmlHexadecimal
谏
Url
%E8%B0%8F

Code

MD5
2e1b55e6d4893817c9da2083ac3d9d5b
Sha1
2b110cccd71dff9c4493450f5ca21292b94554cf
Base64
6LCP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C0F';
console.log(char);  // Output: 谏

Java:

char c = '\u8C0F';
System.out.println(c);  // Output: 谏

JSON:

{"text": "\u8C0F"}  // Value: 谏

Python:

char = '\u8C0F'
print(char)  # Output: 谏

Perl:

my $char = "\x{8C0F}";
print $char;  # Output: 谏

PHP:

$char = "\x{8C0F}";
echo $char;  // Output: 谏

Ruby:

char = "\u{8C0F}"
puts char  # Output: 谏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35855;</p>  <!-- Display: 谏 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C0F;</p>  <!-- Display: 谏 -->

URL Encoding:

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

Encodings

MD5:

2e1b55e6d4893817c9da2083ac3d9d5b

SHA1:

2b110cccd71dff9c4493450f5ca21292b94554cf

Base64:

6LCP