Unicode Finder

"彋" U+5F4B(CJK UNIFIED IDEOGRAPH-5F4B)

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

Programming

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

Web

CSS
\005F4B
HtmlDecimal
彋
HtmlHexadecimal
彋
Url
%E5%BD%8B

Code

MD5
c8b7fac3410570c4bd22de3d1094423a
Sha1
a0a9d1b4cf174fc90771d7a1498c40c59e66434c
Base64
5b2L

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F4B';
console.log(char);  // Output: 彋

Java:

char c = '\u5F4B';
System.out.println(c);  // Output: 彋

JSON:

{"text": "\u5F4B"}  // Value: 彋

Python:

char = '\u5F4B'
print(char)  # Output: 彋

Perl:

my $char = "\x{5F4B}";
print $char;  # Output: 彋

PHP:

$char = "\x{5F4B}";
echo $char;  // Output: 彋

Ruby:

char = "\u{5F4B}"
puts char  # Output: 彋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24395;</p>  <!-- Display: 彋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F4B;</p>  <!-- Display: 彋 -->

URL Encoding:

// 彋 URL encoding
https://unicodefinder.com/search.php?query=%E5%BD%8B

Encodings

MD5:

c8b7fac3410570c4bd22de3d1094423a

SHA1:

a0a9d1b4cf174fc90771d7a1498c40c59e66434c

Base64:

5b2L