Unicode Finder

"懲" U+61F2(CJK UNIFIED IDEOGRAPH-61F2)

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

Programming

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

Web

CSS
\0061F2
HtmlDecimal
懲
HtmlHexadecimal
懲
Url
%E6%87%B2

Code

MD5
a43c4237403d4340d644cf247ea70e9d
Sha1
509cf891180a5921737b846ed34075ff83504c46
Base64
5oey

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u61F2';
console.log(char);  // Output: 懲

Java:

char c = '\u61F2';
System.out.println(c);  // Output: 懲

JSON:

{"text": "\u61F2"}  // Value: 懲

Python:

char = '\u61F2'
print(char)  # Output: 懲

Perl:

my $char = "\x{61F2}";
print $char;  # Output: 懲

PHP:

$char = "\x{61F2}";
echo $char;  // Output: 懲

Ruby:

char = "\u{61F2}"
puts char  # Output: 懲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25074;</p>  <!-- Display: 懲 -->

HTML Hexadecimal:

<p>HTML hex: &#x61F2;</p>  <!-- Display: 懲 -->

URL Encoding:

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

Encodings

MD5:

a43c4237403d4340d644cf247ea70e9d

SHA1:

509cf891180a5921737b846ed34075ff83504c46

Base64:

5oey