Unicode Finder

"嵔" U+5D54(CJK UNIFIED IDEOGRAPH-5D54)

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

Programming

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

Web

CSS
\005D54
HtmlDecimal
嵔
HtmlHexadecimal
嵔
Url
%E5%B5%94

Code

MD5
c87fbdda7d283ed7b2b756f92c5b04bb
Sha1
b5a70523e4963cdd4a9c64fa966394de88c1957c
Base64
5bWU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D54';
console.log(char);  // Output: 嵔

Java:

char c = '\u5D54';
System.out.println(c);  // Output: 嵔

JSON:

{"text": "\u5D54"}  // Value: 嵔

Python:

char = '\u5D54'
print(char)  # Output: 嵔

Perl:

my $char = "\x{5D54}";
print $char;  # Output: 嵔

PHP:

$char = "\x{5D54}";
echo $char;  // Output: 嵔

Ruby:

char = "\u{5D54}"
puts char  # Output: 嵔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23892;</p>  <!-- Display: 嵔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D54;</p>  <!-- Display: 嵔 -->

URL Encoding:

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

Encodings

MD5:

c87fbdda7d283ed7b2b756f92c5b04bb

SHA1:

b5a70523e4963cdd4a9c64fa966394de88c1957c

Base64:

5bWU