Unicode Finder

"戲" U+6232(CJK UNIFIED IDEOGRAPH-6232)

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

Programming

C
\u6232
JavaScript
\u6232
Java
\u6232
Json
\u6232
Python
\u6232
Perl
\x{6232}
PHP
\x{6232}
Ruby
\u{6232}
Rust
\u{6232}
Go
\u6232

Web

CSS
\006232
HtmlDecimal
戲
HtmlHexadecimal
戲
Url
%E6%88%B2

Code

MD5
efac62243fdcc14793110865d75b74ae
Sha1
095c7236992bc35bbe24f3949e7327d5db6c546d
Base64
5oiy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6232';
console.log(char);  // Output: 戲

Java:

char c = '\u6232';
System.out.println(c);  // Output: 戲

JSON:

{"text": "\u6232"}  // Value: 戲

Python:

char = '\u6232'
print(char)  # Output: 戲

Perl:

my $char = "\x{6232}";
print $char;  # Output: 戲

PHP:

$char = "\x{6232}";
echo $char;  // Output: 戲

Ruby:

char = "\u{6232}"
puts char  # Output: 戲

Rust:

let c = '\u{6232}';
println!("{}", c);  // Output: 戲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006232";  /* Display: 戲 */
}

HTML Decimal:

<p>HTML decimal: &#25138;</p>  <!-- Display: 戲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6232;</p>  <!-- Display: 戲 -->

URL Encoding:

// 戲 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%B2

Encodings

MD5:

efac62243fdcc14793110865d75b74ae

SHA1:

095c7236992bc35bbe24f3949e7327d5db6c546d

Base64:

5oiy