Unicode Finder

"异" U+5F02(CJK UNIFIED IDEOGRAPH-5F02)

U+5F02
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5F02

Programming

C
\u5F02
JavaScript
\u5F02
Java
\u5F02
Json
\u5F02
Python
\u5F02
Perl
\x{5F02}
PHP
\x{5F02}
Ruby
\u{5F02}
Rust
\u{5F02}
Go
\u5F02

Web

CSS
\005F02
HtmlDecimal
异
HtmlHexadecimal
异
Url
%E5%BC%82

Code

MD5
b0d8ea77af1783147c9ec3a50e36557f
Sha1
9c25293dd3f3746eb48752aa542f2fe3e58cdb4c
Base64
5byC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F02';
console.log(char);  // Output: 异

Java:

char c = '\u5F02';
System.out.println(c);  // Output: 异

JSON:

{"text": "\u5F02"}  // Value: 异

Python:

char = '\u5F02'
print(char)  # Output: 异

Perl:

my $char = "\x{5F02}";
print $char;  # Output: 异

PHP:

$char = "\x{5F02}";
echo $char;  // Output: 异

Ruby:

char = "\u{5F02}"
puts char  # Output: 异

Rust:

let c = '\u{5F02}';
println!("{}", c);  // Output: 异

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005F02";  /* Display: 异 */
}

HTML Decimal:

<p>HTML decimal: &#24322;</p>  <!-- Display: 异 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F02;</p>  <!-- Display: 异 -->

URL Encoding:

// 异 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%82

Encodings

MD5:

b0d8ea77af1783147c9ec3a50e36557f

SHA1:

9c25293dd3f3746eb48752aa542f2fe3e58cdb4c

Base64:

5byC