Unicode Finder

"弝" U+5F1D(CJK UNIFIED IDEOGRAPH-5F1D)

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

Programming

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

Web

CSS
\005F1D
HtmlDecimal
弝
HtmlHexadecimal
弝
Url
%E5%BC%9D

Code

MD5
19f29e9b0e788ce1818d184eef7741c3
Sha1
9e536a250ce968704e0b337e31affa31b7bdbe3a
Base64
5byd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F1D';
console.log(char);  // Output: 弝

Java:

char c = '\u5F1D';
System.out.println(c);  // Output: 弝

JSON:

{"text": "\u5F1D"}  // Value: 弝

Python:

char = '\u5F1D'
print(char)  # Output: 弝

Perl:

my $char = "\x{5F1D}";
print $char;  # Output: 弝

PHP:

$char = "\x{5F1D}";
echo $char;  // Output: 弝

Ruby:

char = "\u{5F1D}"
puts char  # Output: 弝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24349;</p>  <!-- Display: 弝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F1D;</p>  <!-- Display: 弝 -->

URL Encoding:

// 弝 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%9D

Encodings

MD5:

19f29e9b0e788ce1818d184eef7741c3

SHA1:

9e536a250ce968704e0b337e31affa31b7bdbe3a

Base64:

5byd