Unicode Finder

"慑" U+6151(CJK UNIFIED IDEOGRAPH-6151)

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

Programming

C
\u6151
JavaScript
\u6151
Java
\u6151
Json
\u6151
Python
\u6151
Perl
\x{6151}
PHP
\x{6151}
Ruby
\u{6151}
Rust
\u{6151}
Go
\u6151

Web

CSS
\006151
HtmlDecimal
慑
HtmlHexadecimal
慑
Url
%E6%85%91

Code

MD5
1da2b35e877cffbf3ba7da197a9125a9
Sha1
d8d1a4b357b33ffd8c9df46e2bb91cb32996eee2
Base64
5oWR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6151';
console.log(char);  // Output: 慑

Java:

char c = '\u6151';
System.out.println(c);  // Output: 慑

JSON:

{"text": "\u6151"}  // Value: 慑

Python:

char = '\u6151'
print(char)  # Output: 慑

Perl:

my $char = "\x{6151}";
print $char;  # Output: 慑

PHP:

$char = "\x{6151}";
echo $char;  // Output: 慑

Ruby:

char = "\u{6151}"
puts char  # Output: 慑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006151";  /* Display: 慑 */
}

HTML Decimal:

<p>HTML decimal: &#24913;</p>  <!-- Display: 慑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6151;</p>  <!-- Display: 慑 -->

URL Encoding:

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

Encodings

MD5:

1da2b35e877cffbf3ba7da197a9125a9

SHA1:

d8d1a4b357b33ffd8c9df46e2bb91cb32996eee2

Base64:

5oWR