Unicode Finder

"強" U+5F37(CJK UNIFIED IDEOGRAPH-5F37)

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

Programming

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

Web

CSS
\005F37
HtmlDecimal
強
HtmlHexadecimal
強
Url
%E5%BC%B7

Code

MD5
bf43b92b927e8178870276517df8148e
Sha1
bac299bce17a9668a0d4a4587feda65301360960
Base64
5by3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F37';
console.log(char);  // Output: 強

Java:

char c = '\u5F37';
System.out.println(c);  // Output: 強

JSON:

{"text": "\u5F37"}  // Value: 強

Python:

char = '\u5F37'
print(char)  # Output: 強

Perl:

my $char = "\x{5F37}";
print $char;  # Output: 強

PHP:

$char = "\x{5F37}";
echo $char;  // Output: 強

Ruby:

char = "\u{5F37}"
puts char  # Output: 強

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24375;</p>  <!-- Display: 強 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F37;</p>  <!-- Display: 強 -->

URL Encoding:

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

Encodings

MD5:

bf43b92b927e8178870276517df8148e

SHA1:

bac299bce17a9668a0d4a4587feda65301360960

Base64:

5by3