Unicode Finder

"謲" U+8B32(CJK UNIFIED IDEOGRAPH-8B32)

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

Programming

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

Web

CSS
\008B32
HtmlDecimal
謲
HtmlHexadecimal
謲
Url
%E8%AC%B2

Code

MD5
458d19ab6edc20deba15dea54ab7e4d1
Sha1
ed8c7d24623ecc5a3144f993383417f041e70cf6
Base64
6Kyy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8B32';
console.log(char);  // Output: 謲

Java:

char c = '\u8B32';
System.out.println(c);  // Output: 謲

JSON:

{"text": "\u8B32"}  // Value: 謲

Python:

char = '\u8B32'
print(char)  # Output: 謲

Perl:

my $char = "\x{8B32}";
print $char;  # Output: 謲

PHP:

$char = "\x{8B32}";
echo $char;  // Output: 謲

Ruby:

char = "\u{8B32}"
puts char  # Output: 謲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35634;</p>  <!-- Display: 謲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B32;</p>  <!-- Display: 謲 -->

URL Encoding:

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

Encodings

MD5:

458d19ab6edc20deba15dea54ab7e4d1

SHA1:

ed8c7d24623ecc5a3144f993383417f041e70cf6

Base64:

6Kyy