Unicode Finder

"已" U+5DF2(CJK UNIFIED IDEOGRAPH-5DF2)

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

Programming

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

Web

CSS
\005DF2
HtmlDecimal
已
HtmlHexadecimal
已
Url
%E5%B7%B2

Code

MD5
8a3f8eabfecb120a9cecbe795e7cf19a
Sha1
4232e87944c47ef602c045804e282e9158cb2d81
Base64
5bey

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF2';
console.log(char);  // Output: 已

Java:

char c = '\u5DF2';
System.out.println(c);  // Output: 已

JSON:

{"text": "\u5DF2"}  // Value: 已

Python:

char = '\u5DF2'
print(char)  # Output: 已

Perl:

my $char = "\x{5DF2}";
print $char;  # Output: 已

PHP:

$char = "\x{5DF2}";
echo $char;  // Output: 已

Ruby:

char = "\u{5DF2}"
puts char  # Output: 已

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24050;</p>  <!-- Display: 已 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF2;</p>  <!-- Display: 已 -->

URL Encoding:

// 已 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%B2

Encodings

MD5:

8a3f8eabfecb120a9cecbe795e7cf19a

SHA1:

4232e87944c47ef602c045804e282e9158cb2d81

Base64:

5bey