Unicode Finder

"弔" U+5F14(CJK UNIFIED IDEOGRAPH-5F14)

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

Programming

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

Web

CSS
\005F14
HtmlDecimal
弔
HtmlHexadecimal
弔
Url
%E5%BC%94

Code

MD5
cfc2826eb5483cf8d923d9a9715001b2
Sha1
cc2275b80f1cf9f00a0681486aefcbeb56ef65fd
Base64
5byU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F14';
console.log(char);  // Output: 弔

Java:

char c = '\u5F14';
System.out.println(c);  // Output: 弔

JSON:

{"text": "\u5F14"}  // Value: 弔

Python:

char = '\u5F14'
print(char)  # Output: 弔

Perl:

my $char = "\x{5F14}";
print $char;  # Output: 弔

PHP:

$char = "\x{5F14}";
echo $char;  // Output: 弔

Ruby:

char = "\u{5F14}"
puts char  # Output: 弔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24340;</p>  <!-- Display: 弔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F14;</p>  <!-- Display: 弔 -->

URL Encoding:

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

Encodings

MD5:

cfc2826eb5483cf8d923d9a9715001b2

SHA1:

cc2275b80f1cf9f00a0681486aefcbeb56ef65fd

Base64:

5byU