Unicode Finder

"恢" U+6062(CJK UNIFIED IDEOGRAPH-6062)

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

Programming

C
\u6062
JavaScript
\u6062
Java
\u6062
Json
\u6062
Python
\u6062
Perl
\x{6062}
PHP
\x{6062}
Ruby
\u{6062}
Rust
\u{6062}
Go
\u6062

Web

CSS
\006062
HtmlDecimal
恢
HtmlHexadecimal
恢
Url
%E6%81%A2

Code

MD5
c2a43733f1bde3ab291925b1a2be52e0
Sha1
4f69065f13f02a8ca06d8b007b1e474d105c1e76
Base64
5oGi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6062';
console.log(char);  // Output: 恢

Java:

char c = '\u6062';
System.out.println(c);  // Output: 恢

JSON:

{"text": "\u6062"}  // Value: 恢

Python:

char = '\u6062'
print(char)  # Output: 恢

Perl:

my $char = "\x{6062}";
print $char;  # Output: 恢

PHP:

$char = "\x{6062}";
echo $char;  // Output: 恢

Ruby:

char = "\u{6062}"
puts char  # Output: 恢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006062";  /* Display: 恢 */
}

HTML Decimal:

<p>HTML decimal: &#24674;</p>  <!-- Display: 恢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6062;</p>  <!-- Display: 恢 -->

URL Encoding:

// 恢 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%A2

Encodings

MD5:

c2a43733f1bde3ab291925b1a2be52e0

SHA1:

4f69065f13f02a8ca06d8b007b1e474d105c1e76

Base64:

5oGi