Unicode Finder

"弸" U+5F38(CJK UNIFIED IDEOGRAPH-5F38)

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

Programming

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

Web

CSS
\005F38
HtmlDecimal
弸
HtmlHexadecimal
弸
Url
%E5%BC%B8

Code

MD5
a9ac685342f13bd092591465fa3eec79
Sha1
2b09e8c15f37ce455fe88edebad688dec9e5c94f
Base64
5by4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F38';
console.log(char);  // Output: 弸

Java:

char c = '\u5F38';
System.out.println(c);  // Output: 弸

JSON:

{"text": "\u5F38"}  // Value: 弸

Python:

char = '\u5F38'
print(char)  # Output: 弸

Perl:

my $char = "\x{5F38}";
print $char;  # Output: 弸

PHP:

$char = "\x{5F38}";
echo $char;  // Output: 弸

Ruby:

char = "\u{5F38}"
puts char  # Output: 弸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24376;</p>  <!-- Display: 弸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F38;</p>  <!-- Display: 弸 -->

URL Encoding:

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

Encodings

MD5:

a9ac685342f13bd092591465fa3eec79

SHA1:

2b09e8c15f37ce455fe88edebad688dec9e5c94f

Base64:

5by4