Unicode Finder

"谔" U+8C14(CJK UNIFIED IDEOGRAPH-8C14)

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

Programming

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

Web

CSS
\008C14
HtmlDecimal
谔
HtmlHexadecimal
谔
Url
%E8%B0%94

Code

MD5
bc4e1fa5456234f0ff83a5f489a69346
Sha1
b24a098e3f69d5dd30b6e09e8577137384367e06
Base64
6LCU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C14';
console.log(char);  // Output: 谔

Java:

char c = '\u8C14';
System.out.println(c);  // Output: 谔

JSON:

{"text": "\u8C14"}  // Value: 谔

Python:

char = '\u8C14'
print(char)  # Output: 谔

Perl:

my $char = "\x{8C14}";
print $char;  # Output: 谔

PHP:

$char = "\x{8C14}";
echo $char;  // Output: 谔

Ruby:

char = "\u{8C14}"
puts char  # Output: 谔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35860;</p>  <!-- Display: 谔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C14;</p>  <!-- Display: 谔 -->

URL Encoding:

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

Encodings

MD5:

bc4e1fa5456234f0ff83a5f489a69346

SHA1:

b24a098e3f69d5dd30b6e09e8577137384367e06

Base64:

6LCU