Unicode Finder

"謋" U+8B0B(CJK UNIFIED IDEOGRAPH-8B0B)

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

Programming

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

Web

CSS
\008B0B
HtmlDecimal
謋
HtmlHexadecimal
謋
Url
%E8%AC%8B

Code

MD5
1fef93da3671945c3b0c7200660d7bce
Sha1
677d81d10bac847adcf5b5a6b7452ce21ff3a842
Base64
6KyL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B0B';
console.log(char);  // Output: 謋

Java:

char c = '\u8B0B';
System.out.println(c);  // Output: 謋

JSON:

{"text": "\u8B0B"}  // Value: 謋

Python:

char = '\u8B0B'
print(char)  # Output: 謋

Perl:

my $char = "\x{8B0B}";
print $char;  # Output: 謋

PHP:

$char = "\x{8B0B}";
echo $char;  // Output: 謋

Ruby:

char = "\u{8B0B}"
puts char  # Output: 謋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35595;</p>  <!-- Display: 謋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B0B;</p>  <!-- Display: 謋 -->

URL Encoding:

// 謋 URL encoding
https://unicodefinder.com/search.php?query=%E8%AC%8B

Encodings

MD5:

1fef93da3671945c3b0c7200660d7bce

SHA1:

677d81d10bac847adcf5b5a6b7452ce21ff3a842

Base64:

6KyL