Unicode Finder

"怋" U+600B(CJK UNIFIED IDEOGRAPH-600B)

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

Programming

C
\u600B
JavaScript
\u600B
Java
\u600B
Json
\u600B
Python
\u600B
Perl
\x{600B}
PHP
\x{600B}
Ruby
\u{600B}
Rust
\u{600B}
Go
\u600B

Web

CSS
\00600B
HtmlDecimal
怋
HtmlHexadecimal
怋
Url
%E6%80%8B

Code

MD5
276735441b425fafcb1d7899bae8d9ed
Sha1
352bf3b879fb19ed6455773211bc363c6e39e524
Base64
5oCL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u600B';
console.log(char);  // Output: 怋

Java:

char c = '\u600B';
System.out.println(c);  // Output: 怋

JSON:

{"text": "\u600B"}  // Value: 怋

Python:

char = '\u600B'
print(char)  # Output: 怋

Perl:

my $char = "\x{600B}";
print $char;  # Output: 怋

PHP:

$char = "\x{600B}";
echo $char;  // Output: 怋

Ruby:

char = "\u{600B}"
puts char  # Output: 怋

Rust:

let c = '\u{600B}';
println!("{}", c);  // Output: 怋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00600B";  /* Display: 怋 */
}

HTML Decimal:

<p>HTML decimal: &#24587;</p>  <!-- Display: 怋 -->

HTML Hexadecimal:

<p>HTML hex: &#x600B;</p>  <!-- Display: 怋 -->

URL Encoding:

// 怋 URL encoding
https://unicodefinder.com/search.php?query=%E6%80%8B

Encodings

MD5:

276735441b425fafcb1d7899bae8d9ed

SHA1:

352bf3b879fb19ed6455773211bc363c6e39e524

Base64:

5oCL