Unicode Finder

"謮" U+8B2E(CJK UNIFIED IDEOGRAPH-8B2E)

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

Programming

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

Web

CSS
\008B2E
HtmlDecimal
謮
HtmlHexadecimal
謮
Url
%E8%AC%AE

Code

MD5
44ca2133ff99e99504ee7e1b1f37203b
Sha1
d15cf8254aeea35c2b4c8c6e3dab0228c23bc009
Base64
6Kyu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B2E';
console.log(char);  // Output: 謮

Java:

char c = '\u8B2E';
System.out.println(c);  // Output: 謮

JSON:

{"text": "\u8B2E"}  // Value: 謮

Python:

char = '\u8B2E'
print(char)  # Output: 謮

Perl:

my $char = "\x{8B2E}";
print $char;  # Output: 謮

PHP:

$char = "\x{8B2E}";
echo $char;  // Output: 謮

Ruby:

char = "\u{8B2E}"
puts char  # Output: 謮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35630;</p>  <!-- Display: 謮 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B2E;</p>  <!-- Display: 謮 -->

URL Encoding:

// 謮 URL encoding
https://unicodefinder.com/search.php?query=%E8%AC%AE

Encodings

MD5:

44ca2133ff99e99504ee7e1b1f37203b

SHA1:

d15cf8254aeea35c2b4c8c6e3dab0228c23bc009

Base64:

6Kyu