Unicode Finder

"谤" U+8C24(CJK UNIFIED IDEOGRAPH-8C24)

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

Programming

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

Web

CSS
\008C24
HtmlDecimal
谤
HtmlHexadecimal
谤
Url
%E8%B0%A4

Code

MD5
ccb132f3edf62dac33e1dcd18a81fd17
Sha1
765293db783c0393305da57cd412bb6376d21492
Base64
6LCk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C24';
console.log(char);  // Output: 谤

Java:

char c = '\u8C24';
System.out.println(c);  // Output: 谤

JSON:

{"text": "\u8C24"}  // Value: 谤

Python:

char = '\u8C24'
print(char)  # Output: 谤

Perl:

my $char = "\x{8C24}";
print $char;  # Output: 谤

PHP:

$char = "\x{8C24}";
echo $char;  // Output: 谤

Ruby:

char = "\u{8C24}"
puts char  # Output: 谤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35876;</p>  <!-- Display: 谤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C24;</p>  <!-- Display: 谤 -->

URL Encoding:

// 谤 URL encoding
https://unicodefinder.com/search.php?query=%E8%B0%A4

Encodings

MD5:

ccb132f3edf62dac33e1dcd18a81fd17

SHA1:

765293db783c0393305da57cd412bb6376d21492

Base64:

6LCk