Unicode Finder

"嵉" U+5D49(CJK UNIFIED IDEOGRAPH-5D49)

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

Programming

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

Web

CSS
\005D49
HtmlDecimal
嵉
HtmlHexadecimal
嵉
Url
%E5%B5%89

Code

MD5
b42327026f20cdf1e4feeaeeb35ade38
Sha1
c5086270da065c4907ef4a5205275bf7aac14d08
Base64
5bWJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D49';
console.log(char);  // Output: 嵉

Java:

char c = '\u5D49';
System.out.println(c);  // Output: 嵉

JSON:

{"text": "\u5D49"}  // Value: 嵉

Python:

char = '\u5D49'
print(char)  # Output: 嵉

Perl:

my $char = "\x{5D49}";
print $char;  # Output: 嵉

PHP:

$char = "\x{5D49}";
echo $char;  // Output: 嵉

Ruby:

char = "\u{5D49}"
puts char  # Output: 嵉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23881;</p>  <!-- Display: 嵉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D49;</p>  <!-- Display: 嵉 -->

URL Encoding:

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

Encodings

MD5:

b42327026f20cdf1e4feeaeeb35ade38

SHA1:

c5086270da065c4907ef4a5205275bf7aac14d08

Base64:

5bWJ