Unicode Finder

"慔" U+6154(CJK UNIFIED IDEOGRAPH-6154)

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

Programming

C
\u6154
JavaScript
\u6154
Java
\u6154
Json
\u6154
Python
\u6154
Perl
\x{6154}
PHP
\x{6154}
Ruby
\u{6154}
Rust
\u{6154}
Go
\u6154

Web

CSS
\006154
HtmlDecimal
慔
HtmlHexadecimal
慔
Url
%E6%85%94

Code

MD5
21ea9dd38d2cac632845aa754f429b07
Sha1
cdd5650bb0bb692cb7cec2ea32737acdcb632e02
Base64
5oWU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6154';
console.log(char);  // Output: 慔

Java:

char c = '\u6154';
System.out.println(c);  // Output: 慔

JSON:

{"text": "\u6154"}  // Value: 慔

Python:

char = '\u6154'
print(char)  # Output: 慔

Perl:

my $char = "\x{6154}";
print $char;  # Output: 慔

PHP:

$char = "\x{6154}";
echo $char;  // Output: 慔

Ruby:

char = "\u{6154}"
puts char  # Output: 慔

Rust:

let c = '\u{6154}';
println!("{}", c);  // Output: 慔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006154";  /* Display: 慔 */
}

HTML Decimal:

<p>HTML decimal: &#24916;</p>  <!-- Display: 慔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6154;</p>  <!-- Display: 慔 -->

URL Encoding:

// 慔 URL encoding
https://unicodefinder.com/search.php?query=%E6%85%94

Encodings

MD5:

21ea9dd38d2cac632845aa754f429b07

SHA1:

cdd5650bb0bb692cb7cec2ea32737acdcb632e02

Base64:

5oWU