Unicode Finder

"怳" U+6033(CJK UNIFIED IDEOGRAPH-6033)

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

Programming

C
\u6033
JavaScript
\u6033
Java
\u6033
Json
\u6033
Python
\u6033
Perl
\x{6033}
PHP
\x{6033}
Ruby
\u{6033}
Rust
\u{6033}
Go
\u6033

Web

CSS
\006033
HtmlDecimal
怳
HtmlHexadecimal
怳
Url
%E6%80%B3

Code

MD5
684760390ec1a2d15438dc04ebc690a3
Sha1
055f60e05d218654017205b61d250427ab234b1a
Base64
5oCz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6033';
console.log(char);  // Output: 怳

Java:

char c = '\u6033';
System.out.println(c);  // Output: 怳

JSON:

{"text": "\u6033"}  // Value: 怳

Python:

char = '\u6033'
print(char)  # Output: 怳

Perl:

my $char = "\x{6033}";
print $char;  # Output: 怳

PHP:

$char = "\x{6033}";
echo $char;  // Output: 怳

Ruby:

char = "\u{6033}"
puts char  # Output: 怳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006033";  /* Display: 怳 */
}

HTML Decimal:

<p>HTML decimal: &#24627;</p>  <!-- Display: 怳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6033;</p>  <!-- Display: 怳 -->

URL Encoding:

// 怳 URL encoding
https://unicodefinder.com/search.php?query=%E6%80%B3

Encodings

MD5:

684760390ec1a2d15438dc04ebc690a3

SHA1:

055f60e05d218654017205b61d250427ab234b1a

Base64:

5oCz