Unicode Finder

"嵬" U+5D6C(CJK UNIFIED IDEOGRAPH-5D6C)

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

Programming

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

Web

CSS
\005D6C
HtmlDecimal
嵬
HtmlHexadecimal
嵬
Url
%E5%B5%AC

Code

MD5
54a5a168db699dff48725b08ef5cece3
Sha1
1f60f1a5de006ef27ee5592c49bf4131cc1945a7
Base64
5bWs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D6C';
console.log(char);  // Output: 嵬

Java:

char c = '\u5D6C';
System.out.println(c);  // Output: 嵬

JSON:

{"text": "\u5D6C"}  // Value: 嵬

Python:

char = '\u5D6C'
print(char)  # Output: 嵬

Perl:

my $char = "\x{5D6C}";
print $char;  # Output: 嵬

PHP:

$char = "\x{5D6C}";
echo $char;  // Output: 嵬

Ruby:

char = "\u{5D6C}"
puts char  # Output: 嵬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23916;</p>  <!-- Display: 嵬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D6C;</p>  <!-- Display: 嵬 -->

URL Encoding:

// 嵬 URL encoding
https://unicodefinder.com/search.php?query=%E5%B5%AC

Encodings

MD5:

54a5a168db699dff48725b08ef5cece3

SHA1:

1f60f1a5de006ef27ee5592c49bf4131cc1945a7

Base64:

5bWs