Unicode Finder

"弓" U+5F13(CJK UNIFIED IDEOGRAPH-5F13)

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

Programming

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

Web

CSS
\005F13
HtmlDecimal
弓
HtmlHexadecimal
弓
Url
%E5%BC%93

Code

MD5
ee5894c7d33ccfd48c25ffc42f07a0d1
Sha1
a0ec11cd07b78dd15c5dc10426856956f1757fef
Base64
5byT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F13';
console.log(char);  // Output: 弓

Java:

char c = '\u5F13';
System.out.println(c);  // Output: 弓

JSON:

{"text": "\u5F13"}  // Value: 弓

Python:

char = '\u5F13'
print(char)  # Output: 弓

Perl:

my $char = "\x{5F13}";
print $char;  # Output: 弓

PHP:

$char = "\x{5F13}";
echo $char;  // Output: 弓

Ruby:

char = "\u{5F13}"
puts char  # Output: 弓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24339;</p>  <!-- Display: 弓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F13;</p>  <!-- Display: 弓 -->

URL Encoding:

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

Encodings

MD5:

ee5894c7d33ccfd48c25ffc42f07a0d1

SHA1:

a0ec11cd07b78dd15c5dc10426856956f1757fef

Base64:

5byT