Unicode Finder

"诤" U+8BE4(CJK UNIFIED IDEOGRAPH-8BE4)

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

Programming

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

Web

CSS
\008BE4
HtmlDecimal
诤
HtmlHexadecimal
诤
Url
%E8%AF%A4

Code

MD5
e093b7b55776c8afcd8ceec30134ee26
Sha1
51611b6bbcef9c3dffa00464ab64269743ea6864
Base64
6K+k

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8BE4';
console.log(char);  // Output: 诤

Java:

char c = '\u8BE4';
System.out.println(c);  // Output: 诤

JSON:

{"text": "\u8BE4"}  // Value: 诤

Python:

char = '\u8BE4'
print(char)  # Output: 诤

Perl:

my $char = "\x{8BE4}";
print $char;  # Output: 诤

PHP:

$char = "\x{8BE4}";
echo $char;  // Output: 诤

Ruby:

char = "\u{8BE4}"
puts char  # Output: 诤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35812;</p>  <!-- Display: 诤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8BE4;</p>  <!-- Display: 诤 -->

URL Encoding:

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

Encodings

MD5:

e093b7b55776c8afcd8ceec30134ee26

SHA1:

51611b6bbcef9c3dffa00464ab64269743ea6864

Base64:

6K+k