Unicode Finder

"惲" U+60F2(CJK UNIFIED IDEOGRAPH-60F2)

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

Programming

C
\u60F2
JavaScript
\u60F2
Java
\u60F2
Json
\u60F2
Python
\u60F2
Perl
\x{60F2}
PHP
\x{60F2}
Ruby
\u{60F2}
Rust
\u{60F2}
Go
\u60F2

Web

CSS
\0060F2
HtmlDecimal
惲
HtmlHexadecimal
惲
Url
%E6%83%B2

Code

MD5
eef0896ddc9348f6d2b7e0b30057638a
Sha1
5c17fb6b16df5af82a5577f54209e00b2df1a23d
Base64
5oOy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u60F2';
console.log(char);  // Output: 惲

Java:

char c = '\u60F2';
System.out.println(c);  // Output: 惲

JSON:

{"text": "\u60F2"}  // Value: 惲

Python:

char = '\u60F2'
print(char)  # Output: 惲

Perl:

my $char = "\x{60F2}";
print $char;  # Output: 惲

PHP:

$char = "\x{60F2}";
echo $char;  // Output: 惲

Ruby:

char = "\u{60F2}"
puts char  # Output: 惲

Rust:

let c = '\u{60F2}';
println!("{}", c);  // Output: 惲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0060F2";  /* Display: 惲 */
}

HTML Decimal:

<p>HTML decimal: &#24818;</p>  <!-- Display: 惲 -->

HTML Hexadecimal:

<p>HTML hex: &#x60F2;</p>  <!-- Display: 惲 -->

URL Encoding:

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

Encodings

MD5:

eef0896ddc9348f6d2b7e0b30057638a

SHA1:

5c17fb6b16df5af82a5577f54209e00b2df1a23d

Base64:

5oOy