Unicode Finder

"崖" U+5D16(CJK UNIFIED IDEOGRAPH-5D16)

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

Programming

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

Web

CSS
\005D16
HtmlDecimal
崖
HtmlHexadecimal
崖
Url
%E5%B4%96

Code

MD5
f0b3c1887d85d9dc507996337bc4c04b
Sha1
9c496b1a4d70c2c0e67e9cdad08ddd254ec0a319
Base64
5bSW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D16';
console.log(char);  // Output: 崖

Java:

char c = '\u5D16';
System.out.println(c);  // Output: 崖

JSON:

{"text": "\u5D16"}  // Value: 崖

Python:

char = '\u5D16'
print(char)  # Output: 崖

Perl:

my $char = "\x{5D16}";
print $char;  # Output: 崖

PHP:

$char = "\x{5D16}";
echo $char;  // Output: 崖

Ruby:

char = "\u{5D16}"
puts char  # Output: 崖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23830;</p>  <!-- Display: 崖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D16;</p>  <!-- Display: 崖 -->

URL Encoding:

// 崖 URL encoding
https://unicodefinder.com/search.php?query=%E5%B4%96

Encodings

MD5:

f0b3c1887d85d9dc507996337bc4c04b

SHA1:

9c496b1a4d70c2c0e67e9cdad08ddd254ec0a319

Base64:

5bSW