Unicode Finder

"诚" U+8BDA(CJK UNIFIED IDEOGRAPH-8BDA)

U+8BDA
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8BDA

Programming

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

Web

CSS
\008BDA
HtmlDecimal
诚
HtmlHexadecimal
诚
Url
%E8%AF%9A

Code

MD5
d9918089df70534324134e2cfb96e238
Sha1
94e315fe912be93bbbf7d78a7eaebc8237329dcc
Base64
6K+a

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BDA';
console.log(char);  // Output: 诚

Java:

char c = '\u8BDA';
System.out.println(c);  // Output: 诚

JSON:

{"text": "\u8BDA"}  // Value: 诚

Python:

char = '\u8BDA'
print(char)  # Output: 诚

Perl:

my $char = "\x{8BDA}";
print $char;  # Output: 诚

PHP:

$char = "\x{8BDA}";
echo $char;  // Output: 诚

Ruby:

char = "\u{8BDA}"
puts char  # Output: 诚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35802;</p>  <!-- Display: 诚 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BDA;</p>  <!-- Display: 诚 -->

URL Encoding:

// 诚 URL encoding
https://unicodefinder.com/search.php?query=%E8%AF%9A

Encodings

MD5:

d9918089df70534324134e2cfb96e238

SHA1:

94e315fe912be93bbbf7d78a7eaebc8237329dcc

Base64:

6K+a