Unicode Finder

"諘" U+8AD8(CJK UNIFIED IDEOGRAPH-8AD8)

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

Programming

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

Web

CSS
\008AD8
HtmlDecimal
諘
HtmlHexadecimal
諘
Url
%E8%AB%98

Code

MD5
9085bba7ba6df10e52686f8503310caa
Sha1
e71b0f30fcb0cabc2b7ca99048f1b16af5e7a231
Base64
6KuY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AD8';
console.log(char);  // Output: 諘

Java:

char c = '\u8AD8';
System.out.println(c);  // Output: 諘

JSON:

{"text": "\u8AD8"}  // Value: 諘

Python:

char = '\u8AD8'
print(char)  # Output: 諘

Perl:

my $char = "\x{8AD8}";
print $char;  # Output: 諘

PHP:

$char = "\x{8AD8}";
echo $char;  // Output: 諘

Ruby:

char = "\u{8AD8}"
puts char  # Output: 諘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35544;</p>  <!-- Display: 諘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AD8;</p>  <!-- Display: 諘 -->

URL Encoding:

// 諘 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%98

Encodings

MD5:

9085bba7ba6df10e52686f8503310caa

SHA1:

e71b0f30fcb0cabc2b7ca99048f1b16af5e7a231

Base64:

6KuY