Unicode Finder

"爳" U+7233(CJK UNIFIED IDEOGRAPH-7233)

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

Programming

C
\u7233
JavaScript
\u7233
Java
\u7233
Json
\u7233
Python
\u7233
Perl
\x{7233}
PHP
\x{7233}
Ruby
\u{7233}
Rust
\u{7233}
Go
\u7233

Web

CSS
\007233
HtmlDecimal
爳
HtmlHexadecimal
爳
Url
%E7%88%B3

Code

MD5
f7615ea428dfbad531709a70d3e83a17
Sha1
466f4833db0168d271bcd5b402970c4b20bf8ba0
Base64
54iz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7233';
console.log(char);  // Output: 爳

Java:

char c = '\u7233';
System.out.println(c);  // Output: 爳

JSON:

{"text": "\u7233"}  // Value: 爳

Python:

char = '\u7233'
print(char)  # Output: 爳

Perl:

my $char = "\x{7233}";
print $char;  # Output: 爳

PHP:

$char = "\x{7233}";
echo $char;  // Output: 爳

Ruby:

char = "\u{7233}"
puts char  # Output: 爳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007233";  /* Display: 爳 */
}

HTML Decimal:

<p>HTML decimal: &#29235;</p>  <!-- Display: 爳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7233;</p>  <!-- Display: 爳 -->

URL Encoding:

// 爳 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%B3

Encodings

MD5:

f7615ea428dfbad531709a70d3e83a17

SHA1:

466f4833db0168d271bcd5b402970c4b20bf8ba0

Base64:

54iz