Unicode Finder

"嶟" U+5D9F(CJK UNIFIED IDEOGRAPH-5D9F)

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

Programming

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

Web

CSS
\005D9F
HtmlDecimal
嶟
HtmlHexadecimal
嶟
Url
%E5%B6%9F

Code

MD5
c29a1248817749be76debca7be5061ce
Sha1
22858842d87c6db332b5a405b078878b8d12eb5c
Base64
5baf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D9F';
console.log(char);  // Output: 嶟

Java:

char c = '\u5D9F';
System.out.println(c);  // Output: 嶟

JSON:

{"text": "\u5D9F"}  // Value: 嶟

Python:

char = '\u5D9F'
print(char)  # Output: 嶟

Perl:

my $char = "\x{5D9F}";
print $char;  # Output: 嶟

PHP:

$char = "\x{5D9F}";
echo $char;  // Output: 嶟

Ruby:

char = "\u{5D9F}"
puts char  # Output: 嶟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23967;</p>  <!-- Display: 嶟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D9F;</p>  <!-- Display: 嶟 -->

URL Encoding:

// 嶟 URL encoding
https://unicodefinder.com/search.php?query=%E5%B6%9F

Encodings

MD5:

c29a1248817749be76debca7be5061ce

SHA1:

22858842d87c6db332b5a405b078878b8d12eb5c

Base64:

5baf